summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2001-09-21 15:28:35 +0000
committertron <tron@pkgsrc.org>2001-09-21 15:28:35 +0000
commit85eb51b084aca5f3da52dddb6c9873fcd54411bd (patch)
tree5b1112de4cfe01d1f473d17fde251f39fd90f13a /mk
parent625bed539c3994ff3edbeaeee453d4bd81965ffa (diff)
downloadpkgsrc-85eb51b084aca5f3da52dddb6c9873fcd54411bd.tar.gz
Include "bsd.own.mk" before "bsd.pkg.defaults.mk" because otherwise "?="
assignments in "/etc/mk.conf" won't work anymore.
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.prefs.mk14
1 files changed, 7 insertions, 7 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk
index f8b16dbc437..49cdc897ac9 100644
--- a/mk/bsd.prefs.mk
+++ b/mk/bsd.prefs.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.prefs.mk,v 1.59 2001/09/18 21:30:06 agc Exp $
+# $NetBSD: bsd.prefs.mk,v 1.60 2001/09/21 15:28:35 tron Exp $
#
# Make file, included to get the site preferences, if any. Should
# only be included by package Makefiles before any .if defined()
@@ -93,6 +93,12 @@ LOWER_ARCH?= ${MACHINE_GNU_ARCH}
MACHINE_PLATFORM?= ${OPSYS}-${OS_VERSION}-${MACHINE_ARCH}
MACHINE_GNU_PLATFORM?= ${LOWER_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}
+# Needed on NetBSD and SunOS (zoularis) to prevent an "install:" target
+# from being created in bsd.own.mk.
+NEED_OWN_INSTALL_TARGET=no
+
+.include <bsd.own.mk>
+
# include the defaults file
.if exists(${.CURDIR}/../../mk/bsd.pkg.defaults.mk)
.include "${.CURDIR}/../../mk/bsd.pkg.defaults.mk"
@@ -102,12 +108,6 @@ MACHINE_GNU_PLATFORM?= ${LOWER_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}
.include "${.CURDIR}/mk/bsd.pkg.defaults.mk"
.endif
-# Needed on NetBSD and SunOS (zoularis) to prevent an "install:" target
-# from being created in bsd.own.mk.
-NEED_OWN_INSTALL_TARGET=no
-
-.include <bsd.own.mk>
-
# /usr/share/mk/bsd.own.mk on NetBSD 1.3 does not define OBJECT_FMT
.if ${MACHINE_PLATFORM:MNetBSD-1.3*} != ""
.if ${MACHINE_ARCH} == "alpha" || \