summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2023-04-23 15:39:37 -0500
committerJoel Sherrill <joel@rtems.org>2023-04-23 18:37:25 -0500
commit9865cdbdd4c908d05fb8d3dc0053a3d1665c5fa5 (patch)
tree91c3c39c344450b9ea1ad7763fb082fed0b26548
parentc11/wscript: C11 concurrency does not require POSIX enabled (diff)
downloadrtems-examples-9865cdbdd4c908d05fb8d3dc0053a3d1665c5fa5.tar.bz2
hello/wscript: POSIX threads does not require POSIX enabled
-rw-r--r--hello/wscript5
1 files changed, 2 insertions, 3 deletions
diff --git a/hello/wscript b/hello/wscript
index ca09158..b3cfd08 100644
--- a/hello/wscript
+++ b/hello/wscript
@@ -7,7 +7,6 @@ import rtems_waf.rtems as rtems
def build(bld):
bld.recurse('hello_world_c')
- if rtems.check_posix(bld):
- bld.recurse('posix_hello_world')
- bld.recurse('both_hello')
+ bld.recurse('posix_hello_world')
+ bld.recurse('both_hello')