summaryrefslogtreecommitdiff
path: root/mk/emulator/linux.mk
diff options
context:
space:
mode:
authordsl <dsl>2007-10-13 11:04:15 +0000
committerdsl <dsl>2007-10-13 11:04:15 +0000
commit6e6fc9dca7422d424885475ebd38579f9d1ec4de (patch)
tree63343dc34903d1fb65ed820cc0ce4a8a3a2ec0ce /mk/emulator/linux.mk
parente62947548d777ca00203b259b6ae3b85f7a15b5f (diff)
downloadpkgsrc-6e6fc9dca7422d424885475ebd38579f9d1ec4de.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/linux.mk')
-rw-r--r--mk/emulator/linux.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/emulator/linux.mk b/mk/emulator/linux.mk
index b7f44e714d3..0f07c7bcf1c 100644
--- a/mk/emulator/linux.mk
+++ b/mk/emulator/linux.mk
@@ -1,4 +1,4 @@
-# $NetBSD: linux.mk,v 1.3 2007/09/07 23:04:55 wiz Exp $
+# $NetBSD: linux.mk,v 1.4 2007/10/13 11:04:18 dsl Exp $
#
# Linux binary emulation framework
#
@@ -69,7 +69,7 @@ EMUL_DISTRO= native-linux # native Linux installation
EMULDIR= ${PREFIX}
EMULSUBDIR= # empty
.else
-. include "${.PARSEDIR}/linux-${_EMUL_TYPE}.mk"
+. include "linux-${_EMUL_TYPE}.mk"
.endif
.if (${_EMUL_TYPE} == "builtin") || (${_EMUL_TYPE} == "native")