diff options
author | asami <asami@FreeBSD.org> | 1996-11-14 11:35:19 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-11-14 11:35:19 +0000 |
commit | a61c5a7a6d38539ff0ec42b1b2cb267197b3bc63 (patch) | |
tree | c3dc9125a220f48a6db69647ed9d8727d03b147d /Mk | |
parent | 1feffe1a56ca3e6436763ddae8f2ef2b38055a0b (diff) | |
download | FreeBSD-ports-a61c5a7a6d38539ff0ec42b1b2cb267197b3bc63.zip FreeBSD-ports-a61c5a7a6d38539ff0ec42b1b2cb267197b3bc63.tar.gz |
Oops, forgot to silencethe gzip command to compress manpages.
It will be nice if this went into 2.2, I guess.
Reminded by: max
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 7e2a9d1..40387d5 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -6,7 +6,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.228 1996/11/03 07:51:59 obrien Exp $ +# $Id: bsd.port.mk,v 1.229 1996/11/13 11:37:40 asami Exp $ # # Please view me with 4 column tabs! @@ -938,8 +938,9 @@ _PORT_USE: .USE /bin/sh ${SCRIPTDIR}/${.TARGET:S/^real-/post-/}; \ fi .if make(real-install) && defined(_MANPAGES) && !defined(NOMANCOMPRESS) + @${ECHO_MSG} "===> Compressing the manual pages for ${PKGNAME}" .for manpage in ${_MANPAGES} - ${GZIP_CMD} ${MANPREFIX}/${manpage} + @${GZIP_CMD} ${MANPREFIX}/${manpage} .endfor .endif .if make(real-install) && !defined(NO_PKG_REGISTER) |