summaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>1994-11-16 23:14:22 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>1994-11-16 23:14:22 +0000
commit056837d89c0893f4ceac9c28ce57fc423855962b (patch)
treebaf380d9e34ba861f28be05c20cb1697c5c479f1 /Mk/bsd.port.mk
parentThe c-kermit 189 does no longer exist, update it to the version 190. (diff)
If USE_GMAKE is defined, use ${GMAKE} in ${XMKMF} && ${MAKE} Makefiles
Notes
Notes: svn path=/head/; revision=387
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 7116ad87589e..3ee8ce9cc383 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.65 1994/11/11 09:45:33 jkh Exp $
+# $Id: bsd.port.mk,v 1.66 1994/11/15 10:16:56 jkh Exp $
#
# Please view me with 4 column tabs!
@@ -368,8 +368,12 @@ ${CONFIGURE_COOKIE}:
@(cd ${WRKSRC}; ./configure ${CONFIGURE_ARGS})
.endif
.if defined(USE_IMAKE)
+.if defined(USE_GMAKE)
+ @(cd ${WRKSRC}; ${XMKMF} && ${GMAKE} Makefiles)
+.else
@(cd ${WRKSRC}; ${XMKMF} && ${MAKE} Makefiles)
.endif
+.endif
@if [ -f ${SCRIPTDIR}/post-configure ]; then \
env CURDIR=${.CURDIR} DISTDIR=${DISTDIR} WRKDIR=${WRKDIR} \
WRKSRC=${WRKSRC} PATCHDIR=${PATCHDIR} SCRIPTDIR=${SCRIPTDIR} \