diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | urpm/xml_info.pm | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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; } |