From 341632802a32dbc7924a82035ae34a1b73e58b37 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 9 Aug 2005 06:40:52 +0000 Subject: fix typo --- perl-install/install_steps.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/install_steps.pm') diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 6ff7596c5..b586ea3ed 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -810,7 +810,8 @@ sub setupBootloaderBefore { if (my ($acpi) = cat_("/proc/cmdline") =~ /\bacpi=(\w+)/) { if ($acpi eq 'ht') { #- the user is using the default, which may not be the best - if (detect_devices::computer_info()->{BIOS_Year} >= 2002) { + my $year = detect_devices::computer_info()->{BIOS_Year}; + if ($year >= 2002) { log::l("forcing ACPI on recent bios ($year)"); $acpi = ''; } -- cgit v1.2.1