diff options
-rw-r--r-- | CHANGES | 1 | ||||
-rwxr-xr-x | scripts/brp-compress | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -50,6 +50,7 @@ - display N-V-R.A in dependency failure messages. - selinux: set "rpm_script_t" always, not just for /bin/sh. - honor inherited SIG_IGN when establishing rpmdb signal exit (#134474). + - don't add time stamp to compressed man pages (#132526). 4.3 -> 4.3.1: - fix: don't add leading space to %* argv expansion (#119059). diff --git a/scripts/brp-compress b/scripts/brp-compress index 897a7657b..28051d9fa 100755 --- a/scripts/brp-compress +++ b/scripts/brp-compress @@ -8,7 +8,7 @@ fi cd $RPM_BUILD_ROOT # Compress man pages -COMPRESS="gzip -9" +COMPRESS="gzip -9 -n" COMPRESS_EXT=.gz for d in ./usr/man/man* ./usr/man/*/man* ./usr/info \ |