diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-05 15:07:03 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-05 15:07:03 +0000 |
commit | 3af053ecfc2105a9637a86864012b6a6a1492c75 (patch) | |
tree | 962cc1510c92eb8b8682a0036692e5d5ff8c21aa /perl-install/install2.pm | |
parent | cbde3bb17d6727f6c8cdee03f78bf0b784c295b9 (diff) | |
download | drakx-3af053ecfc2105a9637a86864012b6a6a1492c75.tar drakx-3af053ecfc2105a9637a86864012b6a6a1492c75.tar.gz drakx-3af053ecfc2105a9637a86864012b6a6a1492c75.tar.bz2 drakx-3af053ecfc2105a9637a86864012b6a6a1492c75.tar.xz drakx-3af053ecfc2105a9637a86864012b6a6a1492c75.zip |
write_conf() doesn't need $prefix anymore
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 4ce50506a..9a5c98b26 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -276,7 +276,7 @@ sub setupBootloader { my ($_clicked, $ent_number, $auto) = @_; return if $::g_auto_install || $::uml_install; - modules::write_conf($o->{prefix}); + modules::write_conf(); installStepsCall($o, $auto, 'setupBootloaderBefore') if $ent_number == 1; installStepsCall($o, $auto, 'setupBootloader', $ent_number); @@ -289,7 +289,7 @@ sub configureX { #- done here and also at the end of install2.pm, just in case... install_any::write_fstab($o); - modules::write_conf($o->{prefix}); + modules::write_conf(); require pkgs; installStepsCall($o, $auto, 'configureX') if pkgs::packageByName($o->{packages}, 'XFree86')->flag_installed && !$o->{X}{disabled} || $::testing; @@ -640,7 +640,7 @@ sub main { install_any::log_sizes($o); install_any::remove_advertising($o); install_any::write_fstab($o); - modules::write_conf($o->{prefix}); + modules::write_conf(); detect_devices::install_addons($o->{prefix}); #- save recovery file if needed (ie disk style install). |