diff options
author | ache <ache@FreeBSD.org> | 1994-12-17 10:37:26 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-12-17 10:37:26 +0800 |
commit | b433a390329dbb0bc2ca0bfaf79df082fe54a847 (patch) | |
tree | bcbd819864ab8a2811e9d419fd7cad3b25c97ec4 /Mk | |
parent | 8871f1c6f0d32a02f3267cbd135e498f425423cb (diff) | |
download | freebsd-ports-gnome-b433a390329dbb0bc2ca0bfaf79df082fe54a847.tar.gz freebsd-ports-gnome-b433a390329dbb0bc2ca0bfaf79df082fe54a847.tar.zst freebsd-ports-gnome-b433a390329dbb0bc2ca0bfaf79df082fe54a847.zip |
Automatically add gmake to DEPENDS, if USE_GMAKE
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 4f16988fcada..43d40e4fb859 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.81 1994/12/14 05:53:09 ache Exp $ +# $Id: bsd.port.mk,v 1.82 1994/12/17 01:58:11 ache Exp $ # # Please view me with 4 column tabs! @@ -122,6 +122,9 @@ PREFIX?= ${X11BASE} .else PREFIX?= /usr/local .endif +.if defined(USE_GMAKE) +DEPENDS+= ${PORTSDIR}/devel/gmake +.endif .if exists(${PORTSDIR}/../Makefile.inc) .include "${PORTSDIR}/../Makefile.inc" |