aboutsummaryrefslogtreecommitdiffstats
path: root/configure.pl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-18 03:35:47 +0000
committerlloyd <[email protected]>2008-09-18 03:35:47 +0000
commit8a523c65e19c79b956ee784262c6b413813dde25 (patch)
tree9224cc1c4b3ef3ff326f4b17d2017aed78ac6ba1 /configure.pl
parent32f8440a99c6bf84f731916b8f8cb69b23572b59 (diff)
If a module is not compatible, print also the CPU submodel type
Diffstat (limited to 'configure.pl')
-rwxr-xr-xconfigure.pl3
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;
}