diff options
author | Francois Pons <fpons@mandriva.com> | 2002-02-11 14:34:01 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-02-11 14:34:01 +0000 |
commit | c702b1453e64c19cf0125975434050f8ffbc3737 (patch) | |
tree | fa527b83024be977036d6900f9aa1243bae5d4ac /perl-install/any.pm | |
parent | 4a388a4046253f6a04c1a8186a085d10a4b5f68b (diff) | |
download | drakx-c702b1453e64c19cf0125975434050f8ffbc3737.tar drakx-c702b1453e64c19cf0125975434050f8ffbc3737.tar.gz drakx-c702b1453e64c19cf0125975434050f8ffbc3737.tar.bz2 drakx-c702b1453e64c19cf0125975434050f8ffbc3737.tar.xz drakx-c702b1453e64c19cf0125975434050f8ffbc3737.zip |
fixed syntax error...
Diffstat (limited to 'perl-install/any.pm')
-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 b6c6542b0..c8ed731c9 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -99,7 +99,7 @@ sub setupBootloader { 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) || - (grep { $_->{device} =~ /^hd[fghi]/ } @$hds) && (grep { $_->{device} =~ /^hd[abcd]/ } @$hds) || + (grep { $_->{device} =~ /^hd[fghi]/ } @$hds) && (grep { $_->{device} =~ /^hd[abcd]/ } @$hds) ) { $automatic = $semi_auto = 0; #- full expert questions when there is 2 kind of disks |