diff options
author | phk <phk@FreeBSD.org> | 1996-12-11 10:02:29 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-12-11 10:02:29 +0000 |
commit | 5261c5cfd64a8f4273abf061386d88cd67f3012c (patch) | |
tree | b2aab811f5e3e9b3744672b53e589e2ef9fdcfec /lib/Makefile | |
parent | 25f273a0878323c0dbe9e61ceb6acc9a69947647 (diff) | |
download | FreeBSD-src-5261c5cfd64a8f4273abf061386d88cd67f3012c.zip FreeBSD-src-5261c5cfd64a8f4273abf061386d88cd67f3012c.tar.gz |
Don't look for encumbered objects, but encumbered sources.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index d5f1caf..1d33522 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -20,7 +20,7 @@ SUBDIR+=libc libcompat libcom_err libcurses libdisk libedit \ SUBDIR+= libc_r .endif -.if !exists(../secure) || defined(NOSECURE) || defined(NOCRYPT) +.if !exists(${.CURDIR}/../secure) || defined(NOSECURE) || defined(NOCRYPT) SUBDIR+= libcrypt .else SUBDIR+= ../secure/lib/libcrypt @@ -30,7 +30,7 @@ SUBDIR+= libcrypt .endif .endif -.if !exists(../eBones) || defined(NOSECURE) +.if !exists(${.CURDIR}/../eBones) || defined(NOSECURE) SUBDIR+= libtelnet .else .if defined(RELEASEDIR) |