diff options
author | lloyd <[email protected]> | 2008-09-18 03:35:47 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-18 03:35:47 +0000 |
commit | 8a523c65e19c79b956ee784262c6b413813dde25 (patch) | |
tree | 9224cc1c4b3ef3ff326f4b17d2017aed78ac6ba1 /configure.pl | |
parent | 32f8440a99c6bf84f731916b8f8cb69b23572b59 (diff) |
If a module is not compatible, print also the CPU submodel type
Diffstat (limited to 'configure.pl')
-rwxr-xr-x | configure.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.pl b/configure.pl index 286b0af8a..cd73cb5b0 100755 --- a/configure.pl +++ b/configure.pl @@ -429,7 +429,8 @@ sub autoload_modules { !in_array($arch, \@arch_list) && !in_array($submodel, \@arch_list)) { autoconfig("$mod ($realname): skipping, " . - "not compatible with " . realname($arch)); + "not compatible with " . realname($arch) . + "/" . $submodel); next; } |