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 @@ +- urpmf, urpmq: + o fix using xml info files with quotes in medium name - urpmi o do not compute orphan packages when handling priority upgrades o disable dudf support (we've nothing server side) diff --git a/urpm/xml_info.pm b/urpm/xml_info.pm index 58858491..74869957 100644 --- a/urpm/xml_info.pm +++ b/urpm/xml_info.pm @@ -23,7 +23,7 @@ sub do_something_with_nodes { sub open_lzma { my ($xml_info_file) = @_; - $xml_info_file =~ s/'/\'/g; + $xml_info_file =~ s/'/'\\''/g; open(my $F, "lzma -dc '$xml_info_file' |"); $F; } |