diff options
author | jbj <devnull@localhost> | 2004-10-17 18:49:52 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2004-10-17 18:49:52 +0000 |
commit | 18f7b6bc0e5510192207766135aa4ef9fe4c3b8a (patch) | |
tree | 641477f245dc6ee179f2be87bff94a2d033f2824 | |
parent | b4264419a8c36ff910d30b57b88cd59353ff02a9 (diff) | |
download | rpm-18f7b6bc0e5510192207766135aa4ef9fe4c3b8a.tar.gz rpm-18f7b6bc0e5510192207766135aa4ef9fe4c3b8a.tar.bz2 rpm-18f7b6bc0e5510192207766135aa4ef9fe4c3b8a.zip |
- don't add time stamp to compressed man pages (#132526).
CVS patchset: 7477
CVS date: 2004/10/17 18:49:52
-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 \ |