diff options
-rw-r--r-- | Mk/bsd.port.mk | 6 |
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} \ |