summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-11-04 08:44:37 +1100
committerChris Johns <chrisj@rtems.org>2016-11-04 08:44:37 +1100
commit9024cfbc7f5ed421020d34d091ce31c99c53fe63 (patch)
tree017811418adffa05ea60d2b51486a077d745c442 /common
parentUpdate due to clock manager and driver changes (diff)
downloadrtems-docs-9024cfbc7f5ed421020d34d091ce31c99c53fe63.tar.bz2
waf: Fix the bnode issue when building in a manual directory.
Diffstat (limited to 'common')
-rw-r--r--common/waf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/waf.py b/common/waf.py
index acc7949..80e8b28 100644
--- a/common/waf.py
+++ b/common/waf.py
@@ -77,7 +77,7 @@ def build_dir_setup(ctx, buildtype):
where = buildtype
if is_top_build(ctx):
where = os.path.join(ctx.path.name, where)
- bnode = ctx.bldnode.find_node(where)
+ bnode = ctx.bldnode.find_node(where)
if bnode is None:
ctx.bldnode.make_node(where).mkdir()
build_dir = ctx.path.get_bld().relpath()