diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-26 11:54:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-26 11:54:27 +0000 |
commit | fdfdc5b65dd6d1737d263742b9b2a378f5315446 (patch) | |
tree | 7321b82fdf263fe02d5054e08548c235bbb0e558 | |
parent | d4a76c3bc4753efc94c0a59dffa9dca9bcb92f1c (diff) | |
download | drakx-backup-do-not-use-fdfdc5b65dd6d1737d263742b9b2a378f5315446.tar drakx-backup-do-not-use-fdfdc5b65dd6d1737d263742b9b2a378f5315446.tar.gz drakx-backup-do-not-use-fdfdc5b65dd6d1737d263742b9b2a378f5315446.tar.bz2 drakx-backup-do-not-use-fdfdc5b65dd6d1737d263742b9b2a378f5315446.tar.xz drakx-backup-do-not-use-fdfdc5b65dd6d1737d263742b9b2a378f5315446.zip |
fix deleting previous report.bug when upgrading
-rw-r--r-- | perl-install/install_steps.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 8ed192198..8154b2f93 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -973,9 +973,9 @@ sub exitInstall { my ($o) = @_; eval { my $report = '/root/drakx/report.bug'; - unlink $report, "$report.gz"; - output "$o->{prefix}$report", install_any::report_bug($o->{prefix}); - run_program::rooted($o->{prefix}, 'gzip', $report); + unlink "$::prefix$report", "$::prefix$report.gz"; + output "$::prefix$report", install_any::report_bug($o->{prefix}); + run_program::rooted($::prefix, 'gzip', $report); }; install_any::getAndSaveAutoInstallFloppy($o, 1, "$o->{prefix}/root/drakx/replay_install.img"); eval { output "$o->{prefix}/root/drakx/README", "This directory contains several installation-related files, |