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