diff options
author | jmz <jmz@FreeBSD.org> | 1994-11-17 07:14:22 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1994-11-17 07:14:22 +0800 |
commit | 52f5ca6d206c61a9f3d85c4b5184c82fcc1d63ce (patch) | |
tree | efc4949a8536888c07620cd92b952222d1a8f6f1 /Mk | |
parent | adb36667485e4940d461e5ac423efd891a15f305 (diff) | |
download | freebsd-ports-gnome-52f5ca6d206c61a9f3d85c4b5184c82fcc1d63ce.tar.gz freebsd-ports-gnome-52f5ca6d206c61a9f3d85c4b5184c82fcc1d63ce.tar.zst freebsd-ports-gnome-52f5ca6d206c61a9f3d85c4b5184c82fcc1d63ce.zip |
If USE_GMAKE is defined, use ${GMAKE} in ${XMKMF} && ${MAKE} Makefiles
Diffstat (limited to 'Mk')
-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} \ |