diff options
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py index d90f347ab..d9f1c9e89 100755 --- a/configure.py +++ b/configure.py @@ -1388,11 +1388,11 @@ def choose_modules_to_use(modules, archinfo, ccinfo, options): for modname in options.enabled_modules: if modname not in modules: - logging.warning("Unknown enabled module %s" % (modname)) + logging.error("Module not found: %s" % (modname)) for modname in options.disabled_modules: if modname not in modules: - logging.warning("Unknown disabled module %s" % (modname)) + logging.warning("Disabled module not found: %s" % (modname)) for (modname, module) in modules.items(): if modname in options.disabled_modules: |