summaryrefslogtreecommitdiff
path: root/mk/check
diff options
context:
space:
mode:
authordsl <dsl@pkgsrc.org>2007-10-13 11:04:15 +0000
committerdsl <dsl@pkgsrc.org>2007-10-13 11:04:15 +0000
commitd24555b9566ee02d84ba1922350235b402515c7f (patch)
tree63343dc34903d1fb65ed820cc0ce4a8a3a2ec0ce /mk/check
parentd80f116517e16381340d12175c78b747eb6c2dec (diff)
downloadpkgsrc-d24555b9566ee02d84ba1922350235b402515c7f.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