diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-13 14:25:59 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-13 14:25:59 +0000 |
commit | b7661719bc1f1ebd078c7e7adb2eb25c83526c27 (patch) | |
tree | 9cedb533d18ccd4640a30488b731f83c3c438d58 /perl-install/install_steps.pm | |
parent | f47690a41184c9f99a6fbf003b1045c3f4c0220b (diff) | |
download | drakx-b7661719bc1f1ebd078c7e7adb2eb25c83526c27.tar drakx-b7661719bc1f1ebd078c7e7adb2eb25c83526c27.tar.gz drakx-b7661719bc1f1ebd078c7e7adb2eb25c83526c27.tar.bz2 drakx-b7661719bc1f1ebd078c7e7adb2eb25c83526c27.tar.xz drakx-b7661719bc1f1ebd078c7e7adb2eb25c83526c27.zip |
add/remove spaces to make perl_checker happy
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 20921da72..738cb5290 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -362,12 +362,12 @@ sub installPackages($$) { #- complete REWORK, TODO and TOCHECK! #- small transaction will be built based on this selection and depslist. my @toInstall = pkgs::packagesToInstall($packages); - my $time = time; + my $time = time(); $ENV{DURING_INSTALL} = 1; pkgs::install($o->{prefix}, $o->{isUpgrade}, \@toInstall, $packages); delete $ENV{DURING_INSTALL}; run_program::rooted_or_die($o->{prefix}, 'ldconfig') unless $::g_auto_install; - log::l("Install took: ", formatTimeRaw(time - $time)); + log::l("Install took: ", formatTimeRaw(time() - $time)); install_any::log_sizes($o); scalar(@toInstall); #- return number of packages installed. } |