diff options
-rw-r--r-- | perl-install/detect_devices.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 46107ed24..b95583fd7 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -852,7 +852,8 @@ sub BIGMEM() { sub is_i586() { my $cpuinfo = cat_('/proc/cpuinfo'); $cpuinfo =~ /^cpu family\s*:\s*(\d+)/m && $1 < 6 || - $cpuinfo !~ /^flags.*\bcmov\b/m; + $cpuinfo !~ /^flags.*\bcmov\b/m || + $cpuinfo !~ /^flags.*\bpae\b/m; } sub matching_type { |