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 c9c2ed9ff..b99577135 100755 --- a/configure.py +++ b/configure.py @@ -1071,12 +1071,12 @@ def choose_modules_to_use(modules, archinfo, options): elif modname in options.enabled_modules: to_load.append(modname) # trust the user - elif not module.compatible_cpu(archinfo, options): - cannot_use_because(modname, 'incompatible CPU') elif not module.compatible_os(options.os): cannot_use_because(modname, 'incompatible OS') elif not module.compatible_compiler(options.compiler): cannot_use_because(modname, 'incompatible compiler') + elif not module.compatible_cpu(archinfo, options): + cannot_use_because(modname, 'incompatible CPU') elif not module.tr1_ok(options.with_tr1): cannot_use_because(modname, 'missing TR1') |