diff options
author | markm <markm@FreeBSD.org> | 1997-02-09 15:44:13 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1997-02-09 15:44:13 +0000 |
commit | 7701b280a50729646a7ece231764a8d26295a4fa (patch) | |
tree | 33f6606305873555551335347f982af14edd318d /eBones | |
parent | f8e325b1925ba81eb389159fbaa1cf6e92c3abf6 (diff) | |
download | FreeBSD-src-7701b280a50729646a7ece231764a8d26295a4fa.zip FreeBSD-src-7701b280a50729646a7ece231764a8d26295a4fa.tar.gz |
Fix the way the obj/ dir is found
Diffstat (limited to 'eBones')
-rw-r--r-- | eBones/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eBones/Makefile.inc b/eBones/Makefile.inc index 818b74a..4bc753e 100644 --- a/eBones/Makefile.inc +++ b/eBones/Makefile.inc @@ -3,8 +3,8 @@ DISTRIBUTION= krb -.if exists(${.CURDIR}/../../lib/libtelnet/obj) -TELNETOBJDIR= ${.CURDIR}/../../lib/libtelnet/obj +.if exists(${.OBJDIR}/../../lib/libtelnet) +TELNETOBJDIR= ${.OBJDIR}/../../lib/libtelnet .else TELNETOBJDIR= ${.CURDIR}/../../lib/libtelnet .endif |