diff options
author | agc <agc> | 2001-09-09 20:36:07 +0000 |
---|---|---|
committer | agc <agc> | 2001-09-09 20:36:07 +0000 |
commit | 10ab8c4a3a9386cf6af1611fcb6fed36f0c7837e (patch) | |
tree | 3fd1a2f535365e26fdc0e751d53fad480118cea2 /benchmarks/postmark | |
parent | bcd8cfcceceb6d12e34ad9af489c74c7e1e63619 (diff) | |
download | pkgsrc-10ab8c4a3a9386cf6af1611fcb6fed36f0c7837e.tar.gz |
Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:
WRKSRC= ${WRKDIR}
This is much cleaner, much more indicative of what happens, and removes
another of the negative definitions (NO_.* = value).
Diffstat (limited to 'benchmarks/postmark')
-rw-r--r-- | benchmarks/postmark/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/postmark/Makefile b/benchmarks/postmark/Makefile index a17671e5994..8ed3019e39e 100644 --- a/benchmarks/postmark/Makefile +++ b/benchmarks/postmark/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2001/07/17 07:02:15 garbled Exp $ +# $NetBSD: Makefile,v 1.6 2001/09/09 20:36:15 agc Exp $ # FreeBSD ID: ports/benchmarks/postmark/Makefile,v 1.2 1999/09/19 05:13:20 obrien Exp # @@ -16,7 +16,7 @@ EXTRACT_CMD= ${CP} ${DOWNLOADED_DISTFILE} postmark.c NO_PATCH= yes NO_CONFIGURE= yes -NO_WRKSUBDIR= yes +WRKSRC= ${WRKDIR} do-build: (cd ${WRKSRC} && ${CC} ${CFLAGS} -o postmark postmark.c) |