summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChirayu Desai <cdesai@cyanogenmod.org>2013-12-04 14:45:10 +0530
committerGedare Bloom <gedare@rtems.org>2013-12-12 14:55:56 -0500
commit774bc2a48c6c3ba30ad0bb8e9fc406da18366909 (patch)
tree39edacb3f3196e237ac063d9f8f27e8fd175f717
parent4ada4d05b0fce5bcba50e7632da4cd0a43a4d110 (diff)
hello: waf: fix POSIX check
-rw-r--r--hello/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/hello/wscript b/hello/wscript
index 8515918..ca09158 100644
--- a/hello/wscript
+++ b/hello/wscript
@@ -7,7 +7,7 @@ import rtems_waf.rtems as rtems
def build(bld):
bld.recurse('hello_world_c')
- if rtems.check_posix:
+ if rtems.check_posix(bld):
bld.recurse('posix_hello_world')
bld.recurse('both_hello')