diff options
author | dsl <dsl@pkgsrc.org> | 2007-10-13 11:04:15 +0000 |
---|---|---|
committer | dsl <dsl@pkgsrc.org> | 2007-10-13 11:04:15 +0000 |
commit | d24555b9566ee02d84ba1922350235b402515c7f (patch) | |
tree | 63343dc34903d1fb65ed820cc0ce4a8a3a2ec0ce /mk/emulator/osf1.mk | |
parent | d80f116517e16381340d12175c78b747eb6c2dec (diff) | |
download | pkgsrc-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/osf1.mk')
-rw-r--r-- | mk/emulator/osf1.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/emulator/osf1.mk b/mk/emulator/osf1.mk index 97e5058c648..45c6c44cf2b 100644 --- a/mk/emulator/osf1.mk +++ b/mk/emulator/osf1.mk @@ -1,4 +1,4 @@ -# $NetBSD: osf1.mk,v 1.3 2007/08/23 17:39:47 jlam Exp $ +# $NetBSD: osf1.mk,v 1.4 2007/10/13 11:04:18 dsl Exp $ # # OSF/1 (Tru64) binary emulation framework # @@ -34,7 +34,7 @@ EMUL_DISTRO= native-osf1 # native OSF/1 (Tru64) EMULDIR= ${PREFIX} EMULSUBDIR= # empty .else -. include "${.PARSEDIR}/osf1-${_EMUL_TYPE}.mk" +. include "osf1-${_EMUL_TYPE}.mk" .endif .if (${_EMUL_TYPE} == "builtin") || (${_EMUL_TYPE} == "native") |