diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-11-19 12:08:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-11-19 12:08:12 +0000 |
commit | 52c1b2c22e6332f3d95ac6b5f2e3f598522dd574 (patch) | |
tree | b0cf63211c8720f1c3ef03bb3208271a29572d77 /perl-install | |
parent | 0376f8a9a64aa75e405af4f42fa0c30ef72f86d7 (diff) | |
download | drakx-backup-do-not-use-52c1b2c22e6332f3d95ac6b5f2e3f598522dd574.tar drakx-backup-do-not-use-52c1b2c22e6332f3d95ac6b5f2e3f598522dd574.tar.gz drakx-backup-do-not-use-52c1b2c22e6332f3d95ac6b5f2e3f598522dd574.tar.bz2 drakx-backup-do-not-use-52c1b2c22e6332f3d95ac6b5f2e3f598522dd574.tar.xz drakx-backup-do-not-use-52c1b2c22e6332f3d95ac6b5f2e3f598522dd574.zip |
(setupBootloader): fix typo
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 563cb4f4d..ae73ddbf6 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -92,7 +92,7 @@ sub setupBootloader { my $semi_auto = !$::expert && arch() !~ /ia64/; my $ask_per_entries = $::expert || $more > 1; $automatic = 0 if arch() =~ /ppc/; #- no auto for PPC yet - if (grep { $_->{device} =~ /^sd/ } @$hds) && (grep { $_->{device} =~ /^hd/ } @$hds) { + if ((grep { $_->{device} =~ /^sd/ } @$hds) && (grep { $_->{device} =~ /^hd/ } @$hds)) { $automatic = $semi_auto = 0; #- full expert questions when there is 2 kind of disks #- it would need a semi_auto asking on which drive the bios boots... |