summaryrefslogtreecommitdiff
path: root/Mk/Uses/gmake.mk
diff options
context:
space:
mode:
authorTijl Coosemans <tijl@FreeBSD.org>2016-07-08 11:24:18 +0000
committerTijl Coosemans <tijl@FreeBSD.org>2016-07-08 11:24:18 +0000
commita0a3b1dad07d12494adbdb934369f205c0818aae (patch)
treee30f1ac4e357e8c376c8b838988c5bfd27797a31 /Mk/Uses/gmake.mk
parentFix build on -CURRENT now that LIBUSB_API_VERSION is defined (diff)
Remove a patch from devel/gmake so the port no longer depends on
print/texinfo which requires gmake. To break this circular dependency gmake-lite was introduced. This can be removed now as well. PR: 210623 Reviewed by: bapt Exp-run by: antoine Approved by: portmgr (antoine)
Notes
Notes: svn path=/head/; revision=418216
Diffstat (limited to 'Mk/Uses/gmake.mk')
-rw-r--r--Mk/Uses/gmake.mk18
1 files changed, 5 insertions, 13 deletions
diff --git a/Mk/Uses/gmake.mk b/Mk/Uses/gmake.mk
index ec5878b79c8a..9181da894075 100644
--- a/Mk/Uses/gmake.mk
+++ b/Mk/Uses/gmake.mk
@@ -3,7 +3,7 @@
# Provide support to use the GNU make
#
# Feature: gmake
-# Usage: USES=gmake[:lite]
+# Usage: USES=gmake
#
# MAINTAINER: portmgr@FreeBSD.org
@@ -11,19 +11,11 @@
_INCLUDE_USES_GMAKE_MK= yes
.if !empty(gmake_ARGS)
-.if ${gmake_ARGS} == lite
-_GMAKE_EXT= -lite
-.else
-IGNORE= Incorrect 'USES+= gmake:${gmake_ARGS}' gmake has only one valid argument: lite
-.endif
-.endif
-
-.if defined(DIET)
-_GMAKE_EXT= -lite
+IGNORE= Incorrect 'USES+= gmake:${gmake_ARGS}' gmake takes no arguments
.endif
-BUILD_DEPENDS+= gmake${_GMAKE_EXT}:devel/gmake${_GMAKE_EXT}
-CONFIGURE_ENV+= MAKE=gmake${_GMAKE_EXT}
-MAKE_CMD= gmake${_GMAKE_EXT}
+BUILD_DEPENDS+= gmake:devel/gmake
+CONFIGURE_ENV+= MAKE=gmake
+MAKE_CMD= gmake
.endif