diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2015-11-05 12:36:25 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2015-11-05 12:36:25 +0000 |
commit | 065c026fe5e21a269bbaae0ce69307c7308acbea (patch) | |
tree | 9cbf2a263e7841be76898ae832e7bfb273d3fd08 /benchmarks | |
parent | 6d6314e20da82ad66b7b278eee92373caa9ab746 (diff) | |
download | freebsd-ports-065c026fe5e21a269bbaae0ce69307c7308acbea.zip |
Fix ports that confused the meaning of WRKDIR and WRKSRC.
PR: 204056
Submitted by: mat
Reviewed by: bapt
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D2735
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/raidtest/Makefile | 4 | ||||
-rw-r--r-- | benchmarks/stream/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/raidtest/Makefile b/benchmarks/raidtest/Makefile index 00e2b8350f57..0928246a0411 100644 --- a/benchmarks/raidtest/Makefile +++ b/benchmarks/raidtest/Makefile @@ -17,7 +17,7 @@ PLIST_FILES= bin/raidtest do-fetch: do-extract: - ${MKDIR} ${WRKDIR} - ${LN} -sf ${FILESDIR}/${PORTNAME}.c ${FILESDIR}/Makefile ${WRKDIR} + ${MKDIR} ${WRKSRC} + ${LN} -sf ${FILESDIR}/${PORTNAME}.c ${FILESDIR}/Makefile ${WRKSRC} .include <bsd.port.mk> diff --git a/benchmarks/stream/Makefile b/benchmarks/stream/Makefile index 206100fd6a39..11dbd8a54e3b 100644 --- a/benchmarks/stream/Makefile +++ b/benchmarks/stream/Makefile @@ -17,7 +17,7 @@ NO_WRKSUBDIR= yes EXTRACT_CMD= ${CP} EXTRACT_BEFORE_ARGS= # -EXTRACT_AFTER_ARGS= ${WRKDIR} +EXTRACT_AFTER_ARGS= ${WRKSRC} PORTDOCS= stream.c PLIST_FILES= bin/stream_bench |