[rtems_waf commit] rtems.py: Fix typo

Chris Johns chrisj at rtems.org
Wed Sep 18 22:25:38 UTC 2019


Module:    rtems_waf
Branch:    master
Commit:    470597bb69ffe978aeeabd284d4c290fda11cd27
Changeset: http://git.rtems.org/rtems_waf/commit/?id=470597bb69ffe978aeeabd284d4c290fda11cd27

Author:    Vijay Kumar Banerjee <vijaykumar9597 at gmail.com>
Date:      Thu Sep 19 00:02:05 2019 +0530

rtems.py: Fix typo

---

 rtems.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rtems.py b/rtems.py
index 2e57de4..af4b5fd 100644
--- a/rtems.py
+++ b/rtems.py
@@ -326,7 +326,7 @@ def check_cc(conf, *k, **kw):
         kw['fragment'] = test_application()
     conf.check_cc(*k, **kw)
 
-def check_lib_path(ctx, lib, libpath = [], manditory = True):
+def check_lib_path(ctx, lib, libpath = [], mandatory = True):
     lib_lib = 'lib%s.a' % (lib)
     ctx.start_msg('Library %s' % (lib_lib))
     cmd = '%s %s %s -print-file-name=%s' % (' '.join(ctx.env.CC),
@@ -336,7 +336,7 @@ def check_lib_path(ctx, lib, libpath = [], manditory = True):
     out = ctx.cmd_and_log(cmd)
     out = os.path.normpath(out.strip())
     if out == lib_lib:
-        if manditory:
+        if mandatory:
             ctx.fatal('The library %s not found' % (lib_lib))
         ctx.end_msg('not found')
     else:



More information about the vc mailing list