summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjlam <jlam>2004-02-12 09:59:48 +0000
committerjlam <jlam>2004-02-12 09:59:48 +0000
commitad88f74e7a2f1201e7f41926f772fe9bde498c8b (patch)
tree9a82e7590fa299851798e68a4797ea202475bef2
parentb934e9652e21349eb735b3742d228196bdabbe4e (diff)
downloadpkgsrc-ad88f74e7a2f1201e7f41926f772fe9bde498c8b.tar.gz
Several GNU configure scripts (old ones, typically) can't handle it when
"${MAKE}" contains forward slashes. Just pass the bare name of ${MAKE} to the configure phase as we ensure that "make" is always calling the correct one symlinked into the .tools directory.
-rw-r--r--mk/bsd.pkg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index 60fd921e248..93689e5d1ee 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1387 2004/02/12 08:55:34 seb Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1388 2004/02/12 09:59:48 jlam Exp $
#
# This file is in the public domain.
#
@@ -239,7 +239,7 @@ MAKE_PROGRAM= ${_IMAKE_MAKE}
.else
MAKE_PROGRAM= ${MAKE}
.endif
-CONFIGURE_ENV+= MAKE="${MAKE_PROGRAM}"
+CONFIGURE_ENV+= MAKE="${MAKE_PROGRAM:T}"
.if defined(PKG_USE_KERBEROS)
CRYPTO?= uses Kerberos encryption code