diff options
author | wiz <wiz@pkgsrc.org> | 2003-01-14 16:25:41 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-01-14 16:25:41 +0000 |
commit | d2bb2ec0167116755eccd4fb9d2dc9cbaa2a59a4 (patch) | |
tree | dd781e56ead68b7d7d68bb4effdd5df65a07eb5f /mk/bsd.prefs.mk | |
parent | c6bead9a14e50bf566ecd718e465e9f6d94f6f28 (diff) | |
download | pkgsrc-d2bb2ec0167116755eccd4fb9d2dc9cbaa2a59a4.tar.gz |
Define and check for BSD_PREFS_MK, not BSD_PKG_MK. Proposed by Jan Schaumann.
Diffstat (limited to 'mk/bsd.prefs.mk')
-rw-r--r-- | mk/bsd.prefs.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk index e903e2c31b9..e361e4a5c33 100644 --- a/mk/bsd.prefs.mk +++ b/mk/bsd.prefs.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.prefs.mk,v 1.102 2003/01/14 03:01:37 jschauma Exp $ +# $NetBSD: bsd.prefs.mk,v 1.103 2003/01/14 16:25:41 wiz Exp $ # # Make file, included to get the site preferences, if any. Should # only be included by package Makefiles before any .if defined() @@ -7,10 +7,10 @@ # the system defaults (sys.mk and bsd.own.mk) are used. # Do not recursively include mk.conf, redefine OPSYS, include bsd.own.mk, etc. -.ifndef BSD_PKG_MK +.ifndef BSD_PREFS_MK # Let mk.conf know that this is pkgsrc. -BSD_PKG_MK=1 +BSD_PREFS_MK=1 __PREFIX_SET__:=${PREFIX} .if exists(/usr/bin/uname) @@ -317,4 +317,4 @@ WRKDIR_BASENAME?= work WRKDIR?= ${BUILD_DIR}/${WRKDIR_BASENAME} -.endif # BSD_PKG_MK +.endif # BSD_PREFS_MK |