summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjlam <jlam>2003-08-27 00:59:41 +0000
committerjlam <jlam>2003-08-27 00:59:41 +0000
commitcb5c5bf4ee9fe1f12372eae606ecee4e6e351f29 (patch)
tree36fba5ea27ca9760b48d8df1869105b0eb402f65
parent177e0e29bfee21e5d7791a6ee010246acb5c59ef (diff)
downloadpkgsrc-cb5c5bf4ee9fe1f12372eae606ecee4e6e351f29.tar.gz
Forgot a USE_GMAKE => USE_GNU_TOOLS+=make.
-rw-r--r--mk/bsd.pkg.mk11
1 files changed, 6 insertions, 5 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index fb82760a01a..1b344a188e0 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1216.2.36 2003/08/26 21:58:05 jlam Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1216.2.37 2003/08/27 00:59:41 jlam Exp $
#
# This file is in the public domain.
#
@@ -207,15 +207,16 @@ PKG_FAIL_REASON+= "${PKGNAME} uses imake, but the buildlink-x11 package was foun
. endif
.endif # USE_IMAKE
-.if defined(USE_GNU_TOOLS) && !empty(USE_GNU_TOOLS:Mmake)
-_USE_GMAKE= yes
-.endif
-
# XXX USE_GMAKE is redundant since USE_GNU_TOOLS+=make accomplishes the
# XXX same thing but by using the more general tools.mk framework. This
# XXX variable should eventually be reaped from pkgsrc.
#
.if defined(USE_GMAKE)
+USE_GNU_TOOLS+= make
+_USE_GMAKE= yes
+.endif
+
+.if defined(USE_GNU_TOOLS) && !empty(USE_GNU_TOOLS:Mmake)
_USE_GMAKE= yes
.endif