We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3549480 + 4108382 commit 3f7b3e6Copy full SHA for 3f7b3e6
pkgs/build-support/setup-hooks/compress-man-pages.sh
@@ -11,7 +11,7 @@ compressManPages() {
11
# Compress all uncompressed manpages. Don't follow symlinks, etc.
12
# gzip -f is needed to not error out on hard links.
13
find "$dir"/share/man/ -type f -a '!' -regex '.*\.\(bz2\|gz\|xz\)$' -print0 \
14
- | xargs -0 -n1 -P "$NIX_BUILD_CORES" gzip -f
+ | xargs -0 -n1 -P "$NIX_BUILD_CORES" gzip -n -f
15
16
# Point symlinks to compressed manpages.
17
find "$dir"/share/man/ -type l -a '!' -regex '.*\.\(bz2\|gz\|xz\)$' -print0 \
0 commit comments