diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-09-05 17:23:50 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-09-05 17:23:50 +0000 |
commit | d354364919d9769fb7dca7d19f07f87bb29fac30 (patch) | |
tree | 4dc75c99137e9dae7b8baa77d14847015f7f710c | |
parent | 73a6af82acd36ab63b904c763ed36979d2dc0d90 (diff) | |
download | rpmtools-d354364919d9769fb7dca7d19f07f87bb29fac30.tar rpmtools-d354364919d9769fb7dca7d19f07f87bb29fac30.tar.gz rpmtools-d354364919d9769fb7dca7d19f07f87bb29fac30.tar.bz2 rpmtools-d354364919d9769fb7dca7d19f07f87bb29fac30.tar.xz rpmtools-d354364919d9769fb7dca7d19f07f87bb29fac30.zip |
compress XML data with xz instead of lzma
(keeping .lzma extension for compatibility, just adding the magic value)
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | genhdlist2 | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +- compress XML data with xz instead of lzma + (keeping .lzma extension for compatibility, just adding the magic value) + Version 6.4 - 26 August 2012, by Thierry Vignaud - compress synthesis files with '--text' flag passed to xz (shrinks @@ -18,7 +18,7 @@ sub main() { my %options = ( synthesis_filter => '.cz:xz -5 --text', xml_info => 'auto', - xml_info_filter => '.lzma:lzma -5 --text', + xml_info_filter => '.lzma:xz -5 --text', versioned => 'auto' ); |