diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-04-30 10:09:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-04-30 10:09:27 +0000 |
commit | a419039b11d02b7ef2b7f894b199b245a7876303 (patch) | |
tree | 80c4d24a153aff1c05609b529d086457fe557c49 /perl-install/detect_devices.pm | |
parent | c591bd073fb71703d6eb804429ed5b7e53bc538f (diff) | |
download | drakx-a419039b11d02b7ef2b7f894b199b245a7876303.tar drakx-a419039b11d02b7ef2b7f894b199b245a7876303.tar.gz drakx-a419039b11d02b7ef2b7f894b199b245a7876303.tar.bz2 drakx-a419039b11d02b7ef2b7f894b199b245a7876303.tar.xz drakx-a419039b11d02b7ef2b7f894b199b245a7876303.zip |
perl_checker compliance
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index dde0ce63f..57dd842f1 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -368,8 +368,7 @@ sub getCPUs() { push @cpus, $cpu if $cpu; $cpu = {}; } - /^([^\t]*).*:\s(.*)$/; - $cpu->{$1} = $2 if $1; + $cpu->{$1} = $2 if /^([^\t]+).*:\s(.*)$/; } push @cpus, $cpu; @cpus; |