diff options
author | agc <agc@pkgsrc.org> | 1998-06-22 09:03:07 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-06-22 09:03:07 +0000 |
commit | 3024b9c49ec002611147666e2d529e5db4df4f57 (patch) | |
tree | 7522b109768b3965caaa035ec39c02759630e43e /comms/kermit/Makefile | |
parent | 529ac36ae51b2635a71fb8af84db555cab7492d5 (diff) | |
download | pkgsrc-3024b9c49ec002611147666e2d529e5db4df4f57.tar.gz |
Explicitly set MANCOMPRESSED if MANZ is set - _MANPAGES is internal to
bsd.pkg.mk, and will go away soon.
Diffstat (limited to 'comms/kermit/Makefile')
-rw-r--r-- | comms/kermit/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/comms/kermit/Makefile b/comms/kermit/Makefile index 504ce5dd550..a949d7b6a6e 100644 --- a/comms/kermit/Makefile +++ b/comms/kermit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 1998/06/19 21:18:06 tron Exp $ +# $NetBSD: Makefile,v 1.9 1998/06/22 09:03:07 agc Exp $ # $FreeBSD Id: Makefile,v 1.17 1997/11/26 23:16:51 jseger Exp # @@ -14,11 +14,11 @@ RESTRICTED= "'No redistribution' copyright" MIRROR_DISTFILE= no NO_WRKSUBDIR= yes -# Do not list MAN/CAT pages here. It will confuse if MANZ is set. -# The pkg uses BSD-style-Makefiles itself, so it does the right thing. +.include "../../mk/bsd.prefs.mk" -# XXX kludge for problem with automatic manual page handling -_MANPAGES= +.ifdef MANZ +MANCOMPRESSED= yes +.endif post-install: @${MKDIR} ${PREFIX}/share/examples/kermit |