summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorerh <erh>2003-12-03 18:13:28 +0000
committererh <erh>2003-12-03 18:13:28 +0000
commit2e08ae17b1f84ae6a2b0b710f0925481a2b8c6e0 (patch)
treea8c936ef828941aa18e2d974c41ed25ea9fc86cc /mk
parenta26b37b35a1a7c8548efd7f5be0946faa187729e (diff)
downloadpkgsrc-2e08ae17b1f84ae6a2b0b710f0925481a2b8c6e0.tar.gz
If PKGMAKECONF is defined, use it to set MAKECONF instead of "/dev/null".
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.pkg.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index f6a3e767bf3..cfb0a32fd48 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1308 2003/12/02 23:08:24 grant Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1309 2003/12/03 18:13:28 erh Exp $
#
# This file is in the public domain.
#
@@ -23,7 +23,11 @@
##### Prevent /etc/mk.conf from being included by a distribution's BSD-style
##### Makefiles. We really don't want to pick up settings that are used by
##### builds in /usr/src, e.g. DESTDIR.
+.if defined(PKGMAKECONF)
+MAKE_ENV+= MAKECONF=${PKGMAKECONF}
+.else
MAKE_ENV+= MAKECONF=/dev/null
+.endif
##### Pass information about desired toolchain to package build.
.if defined(USETOOLS)