diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-10-16 20:27:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-10-16 20:27:55 +0000 |
commit | 5c973ec8b931c0679cc3ed8667469578b9da4023 (patch) | |
tree | 398091aa5c4373684d60cad1ab1e5612eee1613b /perl-install/install_steps.pm | |
parent | 1728a163d7e5641d72f7f4693a97e83f2138842e (diff) | |
download | drakx-5c973ec8b931c0679cc3ed8667469578b9da4023.tar drakx-5c973ec8b931c0679cc3ed8667469578b9da4023.tar.gz drakx-5c973ec8b931c0679cc3ed8667469578b9da4023.tar.bz2 drakx-5c973ec8b931c0679cc3ed8667469578b9da4023.tar.xz drakx-5c973ec8b931c0679cc3ed8667469578b9da4023.zip |
(installPackages): don't run ldconfig in g_auto_install
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 392f9bb81..bc93ae6ba 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -362,7 +362,7 @@ sub installPackages($$) { #- complete REWORK, TODO and TOCHECK! $ENV{DURING_INSTALL} = 1; pkgs::install($o->{prefix}, $o->{isUpgrade}, \@toInstall, $packages->[1], $packages->[2]); delete $ENV{DURING_INSTALL}; - run_program::rooted($o->{prefix}, 'ldconfig') or die "ldconfig failed!"; + run_program::rooted($o->{prefix}, 'ldconfig') or die "ldconfig failed!" unless $::g_auto_install; log::l("Install took: ", formatTimeRaw(time - $time)); install_any::log_sizes($o); } |