summaryrefslogtreecommitdiff
path: root/mk/check
diff options
context:
space:
mode:
authordsl <dsl>2007-10-13 11:04:15 +0000
committerdsl <dsl>2007-10-13 11:04:15 +0000
commit4e45644385db572a7d11a4a136d73c689f435d0d (patch)
tree63343dc34903d1fb65ed820cc0ce4a8a3a2ec0ce /mk/check
parenteebe8bf3b70238a708e826def91ee8fc98551dc8 (diff)
downloadpkgsrc-4e45644385db572a7d11a4a136d73c689f435d0d.tar.gz
Fix the .include lines so that make looks in the right place first.
Remember .include "foo.mk" is looked for (first) in the directory that contains the makefile being processed (like in C), so remove all the ${.PARSEDIR} and ../ sequences that just cause grief.
Diffstat (limited to 'mk/check')
-rw-r--r--mk/check/bsd.check.mk18
1 files changed, 9 insertions, 9 deletions
diff --git a/mk/check/bsd.check.mk b/mk/check/bsd.check.mk
index 9e48a5e6bbd..2bfbf9e5d0a 100644
--- a/mk/check/bsd.check.mk
+++ b/mk/check/bsd.check.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.check.mk,v 1.5 2006/12/12 21:37:20 rillig Exp $
+# $NetBSD: bsd.check.mk,v 1.6 2007/10/13 11:04:17 dsl Exp $
#
# This Makefile fragment is included by bsd.pkg.mk and provides all
# variables and targets related to build and install checks.
@@ -25,14 +25,14 @@
# check-interpreter, check-shlibs, check-vulnerable, check-wrkref
#
-.include "${.PARSEDIR}/check-files.mk"
-.include "${.PARSEDIR}/check-headers.mk"
-.include "${.PARSEDIR}/check-interpreter.mk"
-.include "${.PARSEDIR}/check-perms.mk"
-.include "${.PARSEDIR}/check-portability.mk"
-.include "${.PARSEDIR}/check-shlibs.mk"
-.include "${.PARSEDIR}/check-vulnerable.mk"
-.include "${.PARSEDIR}/check-wrkref.mk"
+.include "check-files.mk"
+.include "check-headers.mk"
+.include "check-interpreter.mk"
+.include "check-perms.mk"
+.include "check-portability.mk"
+.include "check-shlibs.mk"
+.include "check-vulnerable.mk"
+.include "check-wrkref.mk"
pre-configure-checks-hook \
pre-build-checks-hook: .PHONY