diff options
author | asau <asau@pkgsrc.org> | 2012-08-14 17:16:07 +0000 |
---|---|---|
committer | asau <asau@pkgsrc.org> | 2012-08-14 17:16:07 +0000 |
commit | 0da4f2ff105d8c18937e5349735385a016ab63fe (patch) | |
tree | ecda64cc737724ea35701df5773b39f97b8ff27e /mk | |
parent | bd8a7652eaea4343ec9a91a744c693c0df55bbe3 (diff) | |
download | pkgsrc-0da4f2ff105d8c18937e5349735385a016ab63fe.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.mk | 4 |
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]) |