summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorMasafumi Max NAKANE <max@FreeBSD.org>1996-11-02 20:24:09 +0000
committerMasafumi Max NAKANE <max@FreeBSD.org>1996-11-02 20:24:09 +0000
commit49d40553edd7110b59ed33546487ca1dd9f8c1a7 (patch)
tree69924a98402b0d4d7491db09760a78bbe03d792a /mail
parentWe no longer need -p flag to ${MKDIR}. (diff)
Use ${COMPRESS_MAN} to compress man pages.
Notes
Notes: svn path=/head/; revision=4265
Diffstat (limited to 'mail')
-rw-r--r--mail/mailagent/Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/mail/mailagent/Makefile b/mail/mailagent/Makefile
index 072f7b35c516..d406410db3f2 100644
--- a/mail/mailagent/Makefile
+++ b/mail/mailagent/Makefile
@@ -3,7 +3,7 @@
# Date created: 23 Sep 1996
# Whom: Masafumi NAKANE <max@FreeBSD.ORG>
#
-# $Id: porting.sgml,v 1.16 1996/03/21 14:15:01 asami Exp $
+# $Id: Makefile,v 1.1.1.1 1996/09/29 03:26:45 max Exp $
#
DISTNAME= mailagent-3.0pl44
@@ -36,11 +36,8 @@ MANPAGES= edusers.1 mailagent.1 maildist.1 \
# from several other man pages with .so macro.
post-install:
-.if !defined(NOMANCOMPRESS)
- @echo "Compressing man pages."
- @for manpage in ${MANPAGES}; do \
- gzip -9nf ${PREFIX}/man/man1/$$manpage ;\
- done
-.endif
+.for manpage in ${MANPAGES}
+ ${COMPRESS_MAN} ${PREFIX}/man/man1/${manpage}
+.endfor
.include <bsd.port.mk>