summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2003-08-27 01:01:25 +0000
committerjlam <jlam@pkgsrc.org>2003-08-27 01:01:25 +0000
commit94036bc5034f766b09b0ccb03e757ed931843770 (patch)
treecd7d9f61ef06ced0846be3bc8a89e638e94e5890 /mk
parentf49e37b950087a02f73b3f722cada7c409412c80 (diff)
downloadpkgsrc-94036bc5034f766b09b0ccb03e757ed931843770.tar.gz
Forgot a USE_GMAKE => USE_GNU_TOOLS+=make. (from pkgviews-mk)
Diffstat (limited to 'mk')
-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 f39c2e23017..086a865459a 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1246 2003/08/26 20:15:23 jlam Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1247 2003/08/27 01:01:25 jlam Exp $
#
# This file is in the public domain.
#
@@ -145,15 +145,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