summaryrefslogtreecommitdiffstats
path: root/hello
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 /hello
parentled: posix_*: Add support to build with waf (diff)
downloadrtems-examples-774bc2a48c6c3ba30ad0bb8e9fc406da18366909.tar.bz2
hello: waf: fix POSIX check
Diffstat (limited to 'hello')
-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')