aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-04-05 18:41:16 +0200
committerSimon Warta <[email protected]>2017-04-07 09:10:14 +0200
commit6a25acab798bae4e29b16caecce2eca4a98420bd (patch)
tree23f35465304438cca10f02ec5fce34bc96231009 /configure.py
parent394d1da05947074a48d4b699f7dc8dbb0493399d (diff)
Rename mod -> modname
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/configure.py b/configure.py
index c58842252..e93b26ea5 100755
--- a/configure.py
+++ b/configure.py
@@ -1978,17 +1978,17 @@ class ModulesChooser(object):
def _display_module_information_to_load(all_modules, modules_to_load):
sorted_modules_to_load = sorted(modules_to_load)
- for mod in sorted_modules_to_load:
- if mod.startswith('simd_') and mod != 'simd_engine':
- logging.info('Using SIMD module ' + mod)
-
- for mod in sorted_modules_to_load:
- if all_modules[mod].comment:
- logging.info('%s: %s' % (mod, all_modules[mod].comment))
- if all_modules[mod].warning:
- logging.warning('%s: %s' % (mod, all_modules[mod].warning))
- if all_modules[mod].load_on == 'vendor':
- logging.info('Enabling use of external dependency %s' % mod)
+ for modname in sorted_modules_to_load:
+ if modname.startswith('simd_') and modname != 'simd_engine':
+ logging.info('Using SIMD module ' + modname)
+
+ for modname in sorted_modules_to_load:
+ if all_modules[modname].comment:
+ logging.info('%s: %s' % (modname, all_modules[modname].comment))
+ if all_modules[modname].warning:
+ logging.warning('%s: %s' % (modname, all_modules[modname].warning))
+ if all_modules[modname].load_on == 'vendor':
+ logging.info('Enabling use of external dependency %s' % modname)
logging.info('Loading modules: %s', ' '.join(sorted_modules_to_load))