aboutsummaryrefslogtreecommitdiffstats
path: root/configure.pl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-30 13:56:06 +0000
committerlloyd <[email protected]>2008-09-30 13:56:06 +0000
commit9755157a967ea508f1fdc1d5365f8214553c7086 (patch)
tree5d0f1711b33b3f81543e5e32d4f3a28f98c4c237 /configure.pl
parent874f70a26ee716b139feabe1e36ecfcd96dc2c40 (diff)
Target i686 if uname is i686
Diffstat (limited to 'configure.pl')
-rwxr-xr-xconfigure.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.pl b/configure.pl
index c99c81a98..29713b30e 100755
--- a/configure.pl
+++ b/configure.pl
@@ -1941,10 +1941,10 @@ sub guess_cpu_from_this
my $cpu = '';
$cpu = 'ia32' if($cpuinfo =~ /x86/);
- $cpu = 'ia32' if($cpuinfo =~ /i686/);
$cpu = 'amd64' if($cpuinfo =~ /x86-64/);
$cpu = 'amd64' if($cpuinfo =~ /x86_64/);
+ $cpu = 'i686' if($cpuinfo =~ /i686/);
$cpu = 'athlon' if($cpuinfo =~ /athlon/);
$cpu = 'pentium4' if($cpuinfo =~ /pentium 4/);
$cpu = 'pentium4' if($cpuinfo =~ /pentium 4/);