summaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1994-11-17 15:46:27 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1994-11-17 15:46:27 +0000
commit67dbf64848a3d879945fa472ccb16f51bab18607 (patch)
tree738ace250f2e38ea5b04d31bdc779fb49c5a3f3c /Mk
parentfudgit: data-processing and fitting program (diff)
There seems to be some trouble with install.man working right everywhere.
Conditionalize it off of INSTALL_MANPAGES until I can figure out just why some X ports seem to like it and others not.
Notes
Notes: svn path=/head/; revision=403
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.port.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 5eba5921b9d1..ec594125de5c 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -3,7 +3,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
-# $Id: bsd.port.mk,v 1.70 1994/11/17 10:06:03 jkh Exp $
+# $Id: bsd.port.mk,v 1.71 1994/11/17 10:07:45 jkh Exp $
#
# Please view me with 4 column tabs!
@@ -281,7 +281,7 @@ ${INSTALL_COOKIE}:
@(cd ${WRKSRC}; ${GMAKE} PREFIX=${PREFIX} ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET})
.else defined(USE_GMAKE)
@(cd ${WRKSRC}; ${MAKE} PREFIX=${PREFIX} ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET})
-.if defined(USE_IMAKE)
+.if defined(USE_IMAKE) && defined(INSTALL_MANPAGES)
@(cd ${WRKSRC}; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} install.man)
.endif
.endif