X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/2d21ac55c334faf3a56e5634905ed6987fc787d4..bd504ef0e0b883cdd7917b73b3574eb9ce669905:/config/compress-man-pages.pl diff --git a/config/compress-man-pages.pl b/config/compress-man-pages.pl index 7711919e0..1dbd5a173 100755 --- a/config/compress-man-pages.pl +++ b/config/compress-man-pages.pl @@ -74,8 +74,8 @@ for my $dir (@ARGV) { while(($count = scalar(@compress)) > 0) { $_ = $count > $N ? $N : $count; my @args = splice(@compress, 0, $_); - print "gzip -f @args\n"; - system('gzip', '-f', @args) == 0 or die "gzip failed\n";; + print "gzip -f -n @args\n"; + system('gzip', '-f', '-n', @args) == 0 or die "gzip failed\n";; } foreach my $list (@links) { my $main = shift(@$list);