diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-03 06:56:33 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-03 06:56:33 +0000 |
commit | e8917c8cba65fe05c24c841a5ec4e6824f3e68c7 (patch) | |
tree | a83b1abb4cc53cdc839a61a2d682df031bd02c01 /comms | |
parent | 287347e83c33f84a0015f36de73ef493db8ad519 (diff) |
Changed to use ${COMPRESS_MAN}
Notes
Notes:
svn path=/head/; revision=4270
Diffstat (limited to 'comms')
-rw-r--r-- | comms/minicom/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/comms/minicom/Makefile b/comms/minicom/Makefile index a5dbc6c4467a..1df1afa0543f 100644 --- a/comms/minicom/Makefile +++ b/comms/minicom/Makefile @@ -3,7 +3,7 @@ # Date created: Fri Dec 01, 1995 # Whom: obrien@cs.ucdavis.edu # -# $Id: Makefile,v 1.1.1.1 1996/03/05 07:46:57 asami Exp $ +# $Id: Makefile,v 1.2 1996/07/10 10:47:08 asami Exp $ # DISTNAME= minicom-1.75 @@ -26,9 +26,9 @@ pre-install: .endif post-install: -.if !defined(NOMANCOMPRESS) - @for mp in minicom.1 runscript.1 ascii-xfr.1 ; do \ - gzip -9nf ${PREFIX}/man/man1/$$mp ; done -.endif + ${COMPRESS_MAN} \ + ${PREFIX}/man/minicom.1 \ + ${PREFIX}/man/runscript.1 \ + ${PREFIX}/man/ascii-xfr.1 .include <bsd.port.mk> |