diff options
author | Bill Fenner <fenner@FreeBSD.org> | 1996-12-16 16:50:53 +0000 |
---|---|---|
committer | Bill Fenner <fenner@FreeBSD.org> | 1996-12-16 16:50:53 +0000 |
commit | 8c98eb996b938064988262d1e9ac51c81132c22b (patch) | |
tree | c2b3ce9dc638d00190388321aa682a05cde0916e /mbone | |
parent | Bit of a kluge, I think, but needed to make this package. (diff) |
Hardcode "work/" again instead of using ${WRKSRC}, since not-yet-defined
variables don't work in dependencies or target names.
Notes
Notes:
svn path=/head/; revision=4989
Diffstat (limited to 'mbone')
-rw-r--r-- | mbone/nte/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mbone/nte/Makefile b/mbone/nte/Makefile index 899d9b277326..514f191f91de 100644 --- a/mbone/nte/Makefile +++ b/mbone/nte/Makefile @@ -3,7 +3,7 @@ # Date created: 5 September 1996 # Whom: Bill Fenner <fenner@FreeBSD.ORG> # -# $Id: Makefile,v 1.2 1996/11/18 11:33:02 asami Exp $ +# $Id: Makefile,v 1.3 1996/11/26 11:21:25 asami Exp $ # DISTNAME= nt.1.5a23 @@ -30,9 +30,9 @@ MAKE_ENV= TK_SRC=${TK_SRC} #Although nte includes an hsearch.c for those who don't have it in # libc, there's no way to get the default Makefile to build it. # So we build it here. -pre-build: ${WRKSRC}/freebsd/hsearch.o +pre-build: work/freebsd/hsearch.o -${WRKSRC}/freebsd/hsearch.o: work/src/hsearch.c +work/freebsd/hsearch.o: work/src/hsearch.c ${CC} -Iwork/src ${CFLAGS} -c -o $@ work/src/hsearch.c .include <bsd.port.mk> |