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.
This commit is contained in:
Kinsey Moore 2021-10-07 15:26:35 -05:00 committed by Joel Sherrill
parent 17685d0e50
commit 9d65f34b75

View File

@ -183,7 +183,7 @@ class Builder(builder.ModuleManager):
if conf.check_cc(lib=l, if conf.check_cc(lib=l,
fragment=rtems.test_application(), fragment=rtems.test_application(),
execute=False, execute=False,
mandatory=False) mandatory=False):
conf.env['HAVE_%s' % l.upper()] = True conf.env['HAVE_%s' % l.upper()] = True
else: else:
bld.fatal('invalid config test: %s' % (configTest)) bld.fatal('invalid config test: %s' % (configTest))