From 9d65f34b753f0272018ffb22c88e000b463fceda Mon Sep 17 00:00:00 2001 From: Kinsey Moore Date: Thu, 7 Oct 2021 15:26:35 -0500 Subject: waf_libbsd: Fix typo in previous patch There was a typo in the patch that added the HAVE_ definition that prevented "./waf configure" from succeeding. This adds the missing character. --- waf_libbsd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- cgit v1.2.3