diff options
author | mat <mat@FreeBSD.org> | 2015-11-05 12:36:25 +0000 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2015-11-05 12:36:25 +0000 |
commit | 83b7c91d19c003ffb9239eedefcecc6a149026ea (patch) | |
tree | 9cbf2a263e7841be76898ae832e7bfb273d3fd08 /sysutils/setcdboot/Makefile | |
parent | 89b1b18d91fb0b762e2387add24955f773c21fa4 (diff) | |
download | FreeBSD-ports-83b7c91d19c003ffb9239eedefcecc6a149026ea.zip FreeBSD-ports-83b7c91d19c003ffb9239eedefcecc6a149026ea.tar.gz |
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 'sysutils/setcdboot/Makefile')
-rw-r--r-- | sysutils/setcdboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/setcdboot/Makefile b/sysutils/setcdboot/Makefile index abb2320..fc019cb 100644 --- a/sysutils/setcdboot/Makefile +++ b/sysutils/setcdboot/Makefile @@ -15,8 +15,8 @@ PLIST_FILES= bin/setcdboot .include <bsd.port.pre.mk> do-extract: - ${MKDIR} ${WRKDIR} - ${CP} ${FILESDIR}/setcdboot.c ${WRKDIR} + ${MKDIR} ${WRKSRC} + ${CP} ${FILESDIR}/setcdboot.c ${WRKSRC} do-build: (cd ${WRKSRC} && ${CC} ${CFLAGS} -o setcdboot setcdboot.c) |