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 /games/doom-wolfendoom | |
parent | 6d6314e20da82ad66b7b278eee92373caa9ab746 (diff) |
Notes
Diffstat (limited to 'games/doom-wolfendoom')
-rw-r--r-- | games/doom-wolfendoom/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/doom-wolfendoom/Makefile b/games/doom-wolfendoom/Makefile index d7042e38539b..d56ec97e3a22 100644 --- a/games/doom-wolfendoom/Makefile +++ b/games/doom-wolfendoom/Makefile @@ -22,9 +22,9 @@ DATADIR= ${DMDIR}/${PORTNAME} .include <bsd.port.pre.mk> do-install: - ${FIND} ${WRKDIR}/${PORTNAME} ! -type d -exec ${CHMOD} 0644 {} \; - ${FIND} ${WRKDIR}/${PORTNAME} -type d -exec ${CHMOD} 0755 {} \; + ${FIND} ${WRKSRC}/${PORTNAME} ! -type d -exec ${CHMOD} 0644 {} + + ${FIND} ${WRKSRC}/${PORTNAME} -type d -exec ${CHMOD} 0755 {} + @${MKDIR} ${STAGEDIR}${DATADIR} - ${TAR} -cf - -C ${WRKDIR}/${PORTNAME} . | ${TAR} -xpvf - -C ${STAGEDIR}${DATADIR} + ${TAR} -cf - -C ${WRKSRC}/${PORTNAME} . | ${TAR} -xpvf - -C ${STAGEDIR}${DATADIR} .include <bsd.port.post.mk> |