aboutsummaryrefslogtreecommitdiffstats
path: root/configure.pl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-16 16:46:08 +0000
committerlloyd <[email protected]>2008-09-16 16:46:08 +0000
commit7839b1bc48c7dffceaa2014c76c9a326b3a66c8b (patch)
tree7ceb5c5cd40b80e8957f9a1ac682672c7f059bfb /configure.pl
parent619404d046541311c5336e02c730d2429f6b2585 (diff)
Type fix
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 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/)