[rtems-libbsd commit] waf_libbsd: Fix typo in previous patch

Joel Sherrill joel at rtems.org
Fri Oct 8 14:02:07 UTC 2021


Module:    rtems-libbsd
Branch:    6-freebsd-12
Commit:    0baf1a854553c09a2ebdc5b0e5d84469b7f8aa89
Changeset: http://git.rtems.org/rtems-libbsd/commit/?id=0baf1a854553c09a2ebdc5b0e5d84469b7f8aa89

Author:    Kinsey Moore <kinsey.moore at oarcorp.com>
Date:      Thu Oct  7 15:26:35 2021 -0500

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.

---

 waf_libbsd.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/waf_libbsd.py b/waf_libbsd.py
index 613797a..9e3724d 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))



More information about the vc mailing list