diff options
author | rillig <rillig@pkgsrc.org> | 2008-01-04 01:46:24 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2008-01-04 01:46:24 +0000 |
commit | d3624fdf106f006eafc46d8854c87a32596aeae2 (patch) | |
tree | 09fab4af7837547a826b3008a949a7856dd3f7b8 /mk/bsd.prefs.mk | |
parent | 47f1024dc0fadad85800419df80b284620762f56 (diff) | |
download | pkgsrc-d3624fdf106f006eafc46d8854c87a32596aeae2.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.mk | 12 |
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. |