From a1f122e88fe2a970ed282b127e10a275daad77f0 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Wed, 26 Jun 2013 06:40:46 +0000 Subject: Use xz -2ef options to optimize compression for man and info files, which are almost always <2MB Note: This commit was accidentally missed when importing from subversion and has now been restored. --- compress_files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compress_files b/compress_files index 7831d07..0d90c42 100755 --- a/compress_files +++ b/compress_files @@ -117,7 +117,7 @@ if (@files) { my @command = $ext eq '.gz' ? qw(gzip -9f) : $ext eq '.bz2' ? qw(bzip2 -9f) : $ext eq '.lzma' ? qw(lzma -9f --text) - : $ext eq '.xz' ? qw(xz -f) + : $ext eq '.xz' ? qw(xz -2ef) : qw() ; xargs(\@files, @command) -- cgit v1.2.1