diff options
author | obache <obache@pkgsrc.org> | 2014-12-07 06:22:52 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-12-07 06:22:52 +0000 |
commit | 3dd837513bf41d24efe65e9d220d3e4b77d1dd6d (patch) | |
tree | 937cd246ab687c77cd8f8d93bd013727ba0b7d43 /mk/bsd.prefs.mk | |
parent | 58738ef445d27a177996a9be9716c6a6503fa6ed (diff) | |
download | pkgsrc-3dd837513bf41d24efe65e9d220d3e4b77d1dd6d.tar.gz |
undefined PKGSRC_KEEP_BIN_PKGS must not be evaluated unconditionally.
Diffstat (limited to 'mk/bsd.prefs.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 bfdd1e93f16..bcd1ae66082 100644 --- a/mk/bsd.prefs.mk +++ b/mk/bsd.prefs.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.prefs.mk,v 1.351 2014/12/06 23:28:18 agc Exp $ +# $NetBSD: bsd.prefs.mk,v 1.352 2014/12/07 06:22:52 obache Exp $ # # This file includes the mk.conf file, which contains the user settings. # @@ -529,7 +529,7 @@ DESTDIR= # default is no (to preserve settings since 2013/05/23, prior to that it # was yes) _KEEP_BIN_PKGS?= no -.if !empty(PKGSRC_KEEP_BIN_PKGS:M[Yy][Ee][Ss]) +.if !empty(PKGSRC_KEEP_BIN_PKGS:U:M[Yy][Ee][Ss]) _KEEP_BIN_PKGS= yes .endif |