diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-09-04 18:12:41 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-09-04 18:12:41 +0000 |
commit | 2c476d5f035e222fb30c987f0df93e32806359ca (patch) | |
tree | ffc900d9b8876c43ec2a363199416b852c26d54f /perl-install/install | |
parent | ef04d13071e84d22e02f70277e1a1308667015cc (diff) | |
download | drakx-2c476d5f035e222fb30c987f0df93e32806359ca.tar drakx-2c476d5f035e222fb30c987f0df93e32806359ca.tar.gz drakx-2c476d5f035e222fb30c987f0df93e32806359ca.tar.bz2 drakx-2c476d5f035e222fb30c987f0df93e32806359ca.tar.xz drakx-2c476d5f035e222fb30c987f0df93e32806359ca.zip |
(exitInstall) compress report with xz instead of gzip
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/steps.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 6a9902b74..508f5003b 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- compress report with xz instead of gzip + Version 14.42 - 4 September 2012 - load 'aesni_intel' crypto module for newer Intel CPUs (mga#7333) diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm index 748db7280..c3cac095e 100644 --- a/perl-install/install/steps.pm +++ b/perl-install/install/steps.pm @@ -838,7 +838,7 @@ sub exitInstall { my $report = '/root/drakx/report.bug'; unlink "$::prefix$report", "$::prefix$report.gz"; output "$::prefix$report", install::any::report_bug(); - run_program::rooted($::prefix, 'gzip', $report); + run_program::rooted($::prefix, 'xz', $report); }; output("$::prefix/root/drakx/package_list.pl", install::any::selected_leaves_pl($o)); |