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:05 -0500
commit0baf1a854553c09a2ebdc5b0e5d84469b7f8aa89 (patch)
tree3f70e2149c39691e304e46feabf772274f8c4f15
parentwaf_libbsd: Account for library check results (diff)
downloadrtems-libbsd-0baf1a854553c09a2ebdc5b0e5d84469b7f8aa89.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 613797aa..9e3724d6 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))