summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKinsey Moore <kinsey.moore@oarcorp.com>2021-10-07 15:26:35 -0500
committerJoel Sherrill <joel@rtems.org>2021-10-08 09:05:43 -0500
commit9d65f34b753f0272018ffb22c88e000b463fceda (patch)
tree77277a051ad3b80d0cf7e49a62a704007d1621ce
parentwaf_libbsd: Account for library check results (diff)
downloadrtems-libbsd-9d65f34b753f0272018ffb22c88e000b463fceda.tar.bz2
waf_libbsd: Fix typo in previous patch
There was a typo in the patch that added the HAVE_<LIBRARY> definition that prevented "./waf configure" from succeeding. This adds the missing character.
-rw-r--r--waf_libbsd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/waf_libbsd.py b/waf_libbsd.py
index ee0a3878..d860e687 100644
--- a/waf_libbsd.py
+++ b/waf_libbsd.py
@@ -183,7 +183,7 @@ class Builder(builder.ModuleManager):
if conf.check_cc(lib=l,
fragment=rtems.test_application(),
execute=False,
- mandatory=False)
+ mandatory=False):
conf.env['HAVE_%s' % l.upper()] = True
else:
bld.fatal('invalid config test: %s' % (configTest))