summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--urpm/xml_info.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 7dd3c18b..93a25fc6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- use xz instead of lzma in order to read metadata
+
Version 7.6 - 1 September 2012
- translation updates
diff --git a/urpm/xml_info.pm b/urpm/xml_info.pm
index bbd934dd..a03126f5 100644
--- a/urpm/xml_info.pm
+++ b/urpm/xml_info.pm
@@ -36,7 +36,7 @@ sub open_lzma {
my ($xml_info_file) = @_;
$xml_info_file =~ s/'/'\\''/g;
- open(my $F, "lzma -dc '$xml_info_file' |");
+ open(my $F, "xz -dc '$xml_info_file' |");
$F;
}