diff options
-rw-r--r-- | extras/autowaf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/autowaf.py b/extras/autowaf.py index cff2da4..7305eed 100644 --- a/extras/autowaf.py +++ b/extras/autowaf.py @@ -128,7 +128,7 @@ class ConfigureContext(Configure.ConfigurationContext): def build_path(self, path='.'): """Return `path` within the build directory""" - return str(self.path.get_bld().find_node(path)) + return str(self.path.get_bld().make_node(path)) def get_check_func(conf, lang): if lang == 'c': |