1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Hardcode "work/" again instead of using ${WRKSRC}, since not-yet-defined

variables don't work in dependencies or target names.
This commit is contained in:
Bill Fenner 1996-12-16 16:50:53 +00:00
parent bc45bf7d0a
commit 8c98eb996b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=4989

View File

@ -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>