diff options
author | Francois Pons <fpons@mandriva.com> | 1999-11-09 17:31:24 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 1999-11-09 17:31:24 +0000 |
commit | 02b57b61aafd29a78023e242a0cf998cd93a91ee (patch) | |
tree | 604e259cea3da5ad2f046fd2e11a6c6f631dd1ba /perl-install/pkgs.pm | |
parent | 57b9b33657beba4976551212a562ac85ff22f81f (diff) | |
download | drakx-02b57b61aafd29a78023e242a0cf998cd93a91ee.tar drakx-02b57b61aafd29a78023e242a0cf998cd93a91ee.tar.gz drakx-02b57b61aafd29a78023e242a0cf998cd93a91ee.tar.bz2 drakx-02b57b61aafd29a78023e242a0cf998cd93a91ee.tar.xz drakx-02b57b61aafd29a78023e242a0cf998cd93a91ee.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 0179bf45d..cb12fdb8d 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -300,7 +300,7 @@ sub init_db { my ($prefix, $isUpgrade) = @_; my $f = "$prefix/root/install.log"; - open(LOG, "> $f") ? log::l("opened $f") : log::l("Failed to open $f. No install log will be kept."); +# open(LOG, "> $f") ? log::l("opened $f") : log::l("Failed to open $f. No install log will be kept."); *LOG or *LOG = log::F() or *LOG = *STDERR; CORE::select((CORE::select(LOG), $| = 1)[0]); c::rpmErrorSetCallback(fileno LOG); @@ -315,7 +315,7 @@ sub init_db { sub done_db { log::l("closing install.log file"); - close LOG; + # close LOG; } sub getHeader($) { |