aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.pl b/configure.pl
index 01b6b5586..39a2540fc 100755
--- a/configure.pl
+++ b/configure.pl
@@ -1822,7 +1822,7 @@ sub guess_cpu_from_this
$cpu = 'power4' if($cpuinfo =~ /power4/);
$cpu = 'power5' if($cpuinfo =~ /power5/);
$cpu = 'ppc970' if($cpuinfo =~ /ppc970/);
- $cpu = 'cellppu' if($cpuinfo = ~/cell broadband engine/);
+ $cpu = 'cellppu' if($cpuinfo =~ /cell broadband engine/);
# Ooh, an Alpha. Try to figure out what kind
if($cpuinfo =~ /alpha/)