summaryrefslogtreecommitdiff
path: root/mk/bsd.prefs.mk
diff options
context:
space:
mode:
authorrillig <rillig>2008-01-04 01:46:24 +0000
committerrillig <rillig>2008-01-04 01:46:24 +0000
commit0766ea78a930ba808aa18b4a5e4ae03c29ef2bd2 (patch)
tree09fab4af7837547a826b3008a949a7856dd3f7b8 /mk/bsd.prefs.mk
parentdcfcef5cd4394d1d77556153c073db8f6e8a6ca2 (diff)
downloadpkgsrc-0766ea78a930ba808aa18b4a5e4ae03c29ef2bd2.tar.gz
Made the .include directives simpler, since the directory of the
including file is always the first in the search path.
Diffstat (limited to 'mk/bsd.prefs.mk')
-rw-r--r--mk/bsd.prefs.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk
index 97be2d825c7..ffdce034438 100644
--- a/mk/bsd.prefs.mk
+++ b/mk/bsd.prefs.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.prefs.mk,v 1.273 2007/10/17 10:37:43 rillig Exp $
+# $NetBSD: bsd.prefs.mk,v 1.274 2008/01/04 01:46:24 rillig Exp $
#
# This file includes the mk.conf file, which contains the user settings.
#
@@ -616,21 +616,21 @@ PREPEND_PATH+= ${X11BASE}/bin
PREPEND_PATH+= ${LOCALBASE}/bin
# Wrapper framework definitions
-.include "${PKGSRCDIR}/mk/wrapper/wrapper-defs.mk"
+.include "wrapper/wrapper-defs.mk"
# Binary emulator framework definitions
.if defined(EMUL_PLATFORMS) && !empty(EMUL_PLATFORMS)
-. include "${PKGSRCDIR}/mk/emulator/emulator-vars.mk"
+. include "emulator/emulator-vars.mk"
.endif
# System features framework
-.include "${PKGSRCDIR}/mk/features/features-vars.mk"
+.include "features/features-vars.mk"
# Package system flavor definitions
-.include "${PKGSRCDIR}/mk/flavor/bsd.flavor-vars.mk"
+.include "flavor/bsd.flavor-vars.mk"
# Make variable definitions cache
-.include "${PKGSRCDIR}/mk/bsd.makevars.mk"
+.include "bsd.makevars.mk"
# If MAKECONF is defined, then pass it down to all recursive make
# processes invoked by pkgsrc.