summaryrefslogtreecommitdiff
path: root/mk/build/bsd.build.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/build/bsd.build.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/build/bsd.build.mk')
-rw-r--r--mk/build/bsd.build.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/build/bsd.build.mk b/mk/build/bsd.build.mk
index 6e3d2ccc97f..c45c4689844 100644
--- a/mk/build/bsd.build.mk
+++ b/mk/build/bsd.build.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.build.mk,v 1.9 2007/02/06 20:48:07 rillig Exp $
+# $NetBSD: bsd.build.mk,v 1.10 2008/01/04 01:46:26 rillig Exp $
#
# This Makefile fragment is included by bsd.pkg.mk and provides all
# variables and targets related to building sources for a package.
@@ -30,7 +30,7 @@ _COOKIE.test= ${WRKDIR}/.test_done
###
.PHONY: build
.if !defined(NO_BUILD)
-. include "${PKGSRCDIR}/mk/build/build.mk"
+. include "build.mk"
.elif !target(build)
. if exists(${_COOKIE.build})
build:
@@ -42,7 +42,7 @@ build: barrier
. endif
.endif
-.include "${PKGSRCDIR}/mk/build/test.mk"
+.include "test.mk"
######################################################################
### build-cookie (PRIVATE)