diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-11-20 15:28:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-11-20 15:28:41 +0000 |
commit | ac613b886b6f0effdf1f2fd3553ab5925a4905fd (patch) | |
tree | fefd7e4f5883544a0b87b772f3f55a3fd3f5acb7 | |
parent | dd0da8f40f078c8e71059e1a681d0f38a396d4b4 (diff) | |
download | drakx-ac613b886b6f0effdf1f2fd3553ab5925a4905fd.tar drakx-ac613b886b6f0effdf1f2fd3553ab5925a4905fd.tar.gz drakx-ac613b886b6f0effdf1f2fd3553ab5925a4905fd.tar.bz2 drakx-ac613b886b6f0effdf1f2fd3553ab5925a4905fd.tar.xz drakx-ac613b886b6f0effdf1f2fd3553ab5925a4905fd.zip |
(afterInstallPackages): moved the writeandclean_ldsoconf here
-rw-r--r-- | perl-install/install_steps.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index b07443235..318b61b3c 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -295,8 +295,6 @@ sub beforeInstallPackages { log::l("before install packages, after copy"); #- some packages need such files for proper installation. - any::writeandclean_ldsoconf($o->{prefix}); - log::l("before install packages, after writing ld.so.conf"); $::live or fs::write($o->{prefix}, $o->{fstab}, $o->{manualFstab}, $o->{useSupermount}); log::l("before install packages, after adding localhost in hosts"); @@ -408,6 +406,9 @@ Consoles 1,3,4,7 may also contain interesting information"; #- for mandrake_firstime touch "$o->{prefix}/var/lock/TMP_1ST"; + any::writeandclean_ldsoconf($o->{prefix}); + log::l("before install packages, after writing ld.so.conf"); + #- remove the nasty acon... run_program::rooted($o->{prefix}, "chkconfig", "--del", "acon") unless $ENV{LANGUAGE} =~ /ar/; |