diff options
author | jkh <jkh@FreeBSD.org> | 1996-07-01 06:34:27 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-07-01 06:34:27 +0000 |
commit | 444085826cc0a5ee2f698a5806e1d9eb23cf2151 (patch) | |
tree | c73a73c93f881f23b0badb03cd3393aa7442c4fd /eBones | |
parent | 5114792bdd7a66481ad22b9bc4af97c03af9a1f9 (diff) | |
download | FreeBSD-src-444085826cc0a5ee2f698a5806e1d9eb23cf2151.zip FreeBSD-src-444085826cc0a5ee2f698a5806e1d9eb23cf2151.tar.gz |
Whups! Missed a ${.OBJDIR} here.
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 8d37845..66f5360 100644 --- a/eBones/Makefile.inc +++ b/eBones/Makefile.inc @@ -1,5 +1,5 @@ # From: @(#)Makefile.inc 5.1 (Berkeley) 6/25/90 -# $Id: Makefile.inc,v 1.10 1996/02/11 08:51:47 markm Exp $ +# $Id: Makefile.inc,v 1.11 1996/06/24 04:22:24 jkh Exp $ DISTRIBUTION= krb @@ -16,7 +16,7 @@ KRBOBJDIR= ${.CURDIR}/../../lib/libkrb .endif .if exists(${.OBJDIR}/../../lib/libkdb) -KDBOBJDIR= ${.CURDIR}/../../lib/libkdb +KDBOBJDIR= ${.OBJDIR}/../../lib/libkdb .else KDBOBJDIR= ${.CURDIR}/../../lib/libkdb .endif |