diff options
author | peter <peter@FreeBSD.org> | 1997-07-05 14:22:15 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-07-05 14:22:15 +0000 |
commit | fbd9d6ffad0d5a85b3b60220a9e218c1cccd8e2c (patch) | |
tree | 58395aea17ce8855b4cc74cd6ad2f660f51af6a3 | |
parent | 7b13dec5b4db60aa3d43b06dd74fa8be75499f65 (diff) | |
download | FreeBSD-src-fbd9d6ffad0d5a85b3b60220a9e218c1cccd8e2c.zip FreeBSD-src-fbd9d6ffad0d5a85b3b60220a9e218c1cccd8e2c.tar.gz |
.if exists(../eBones) tests the obj dir, not the source dir's existance.
The existance of a stale obj dir does not imply the source too.
-rw-r--r-- | libexec/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libexec/Makefile b/libexec/Makefile index d46d493..b38f970 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $Id$ +# $Id: Makefile,v 1.24 1997/02/22 14:20:52 peter Exp $ SUBDIR= atrun bootpd comsat fingerd ftpd getNAME getty lfs_cleanerd \ mail.local makekey mknetid named-xfer revnetgroup rexecd rlogind \ @@ -7,7 +7,7 @@ SUBDIR= atrun bootpd comsat fingerd ftpd getNAME getty lfs_cleanerd \ rpc.rstatd rpc.rusersd rpc.rwalld rpc.sprayd rshd talkd tftpd uucpd \ xtend ypxfr -.if !exists(../eBones) || defined(NOSECURE) || !defined(MAKE_EBONES) +.if !exists(${.CURDIR}/../eBones) || defined(NOSECURE) || !defined(MAKE_EBONES) SUBDIR+=telnetd .else .if defined(RELEASEDIR) diff --git a/usr.bin/Makefile b/usr.bin/Makefile index ab1f29b..5f9e8a2 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.3 (Berkeley) 1/7/94 -# $Id: Makefile,v 1.84 1997/05/28 16:05:03 wpaul Exp $ +# $Id: Makefile,v 1.85 1997/05/29 15:03:32 wpaul Exp $ # XXX MISSING: deroff diction graph learn plot # spell spline struct units xsend @@ -32,7 +32,7 @@ SUBDIR+=gprof4 SUBDIR+=tclsh .endif -.if !exists(../eBones) || defined(NOSECURE) || !defined(MAKE_EBONES) +.if !exists(${.CURDIR}/../eBones) || defined(NOSECURE) || !defined(MAKE_EBONES) SUBDIR+=telnet .else .if defined(RELEASEDIR) |