diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-10-17 18:34:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-10-17 18:34:49 +0000 |
commit | acdc26142db3112becc42fe2e5c67147ed8a9fa7 (patch) | |
tree | eb30f32b12e11786e3a8c6d94db4dc92b42344d3 /perl-install/install_steps.pm | |
parent | 369fb96d664c7f80217611e52458cdfffc89af72 (diff) | |
download | drakx-acdc26142db3112becc42fe2e5c67147ed8a9fa7.tar drakx-acdc26142db3112becc42fe2e5c67147ed8a9fa7.tar.gz drakx-acdc26142db3112becc42fe2e5c67147ed8a9fa7.tar.bz2 drakx-acdc26142db3112becc42fe2e5c67147ed8a9fa7.tar.xz drakx-acdc26142db3112becc42fe2e5c67147ed8a9fa7.zip |
make new perl_checker happy: replacing PKG::f by PKG::f()
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 6c5a59b8b..86e645d40 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -161,7 +161,7 @@ sub doPartitionDisksAfter { $o->{fstab} = [ fsedit::get_all_fstab($o->{all_hds}) ]; fsedit::get_root_($o->{fstab}) or die "Oops, no root partition"; - if (arch() =~ /ppc/ && detect_devices::get_mac_generation =~ /NewWorld/) { + if (arch() =~ /ppc/ && detect_devices::get_mac_generation() =~ /NewWorld/) { die "Need bootstrap partition to boot system!" if !(defined $partition_table::mac::bootstrap_part); } @@ -1003,7 +1003,7 @@ Beware that some Mandrake tools rely on the contents of some of these files... so remove any file from here at your own risk! " }; - install_any::unlockCdrom; + install_any::unlockCdrom(); install_any::log_sizes($o); } |