diff options
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); } |