summaryrefslogtreecommitdiff
path: root/mk/emulator/netbsd.mk
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/emulator/netbsd.mk
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/emulator/netbsd.mk')
-rw-r--r--mk/emulator/netbsd.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/emulator/netbsd.mk b/mk/emulator/netbsd.mk
index 3b521712952..b8b8059c9cd 100644
--- a/mk/emulator/netbsd.mk
+++ b/mk/emulator/netbsd.mk
@@ -1,4 +1,4 @@
-# $NetBSD: netbsd.mk,v 1.2 2007/08/23 17:39:47 jlam Exp $
+# $NetBSD: netbsd.mk,v 1.3 2007/10/13 11:04:18 dsl Exp $
#
# NetBSD binary emulation framework
#
@@ -35,7 +35,7 @@ EMUL_DISTRO= native-netbsd # native NetBSD
EMULDIR= ${PREFIX}
EMULSUBDIR= # empty
.else
-. include "${.PARSEDIR}/netbsd-${_EMUL_TYPE}.mk"
+. include "netbsd-${_EMUL_TYPE}.mk"
.endif
.if (${_EMUL_TYPE} == "builtin") || (${_EMUL_TYPE} == "native")