summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorasau <asau@pkgsrc.org>2012-08-14 17:16:07 +0000
committerasau <asau@pkgsrc.org>2012-08-14 17:16:07 +0000
commit5afb95a8b4ca69cf2119911d75fadf9fb42c806d (patch)
treeecda64cc737724ea35701df5773b39f97b8ff27e /mk
parentfd5606f6d6ddb83a103dd625b40ecae784adb51e (diff)
downloadpkgsrc-5afb95a8b4ca69cf2119911d75fadf9fb42c806d.tar.gz
Make "user-destdir" the default PKG_DESTDIR_SUPPORT value
since this is the general case these days and other cases are exceptions. This simplifies development and prevents making some mistakes.
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.prefs.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk
index c30935870bb..ab2844adcb8 100644
--- a/mk/bsd.prefs.mk
+++ b/mk/bsd.prefs.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.prefs.mk,v 1.326 2012/08/14 15:27:07 asau Exp $
+# $NetBSD: bsd.prefs.mk,v 1.327 2012/08/14 17:16:07 asau Exp $
#
# This file includes the mk.conf file, which contains the user settings.
#
@@ -433,7 +433,7 @@ do-install:
# After 2011Q1, the default is to use DESTDIR.
USE_DESTDIR?= yes
# PKG_DESTDIR_SUPPORT can only be one of "none", "destdir", or "user-destdir".
-PKG_DESTDIR_SUPPORT?= none
+PKG_DESTDIR_SUPPORT?= user-destdir
.if ${PKG_DESTDIR_SUPPORT} == "none" || empty(USE_DESTDIR:M[Yy][Ee][Ss])
. if empty(USE_DESTDIR:M[Yy][Ee][Ss]) && empty(USE_DESTDIR:M[Nn][Oo])