diff options
Diffstat (limited to 'games/quake2-source')
-rw-r--r-- | games/quake2-source/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/games/quake2-source/Makefile b/games/quake2-source/Makefile index 5f0d2094b332..ca9388db4b9c 100644 --- a/games/quake2-source/Makefile +++ b/games/quake2-source/Makefile @@ -73,13 +73,13 @@ pre-install: ${XARGS} -0 ${RM} do-install: - @${MKDIR} ${DATADIR} - @${CP} -R ${WRKSRC}/src/game ${DATADIR} - @${INSTALL_DATA} ${FILESDIR}/Makefile.game ${DATADIR}/game/Makefile + ${MKDIR} ${DATADIR} + ${CP} -R ${WRKSRC}/src/game ${DATADIR} + ${INSTALL_DATA} ${FILESDIR}/Makefile.game ${DATADIR}/game/Makefile .for f in ctf rogue xatrix . if defined(WITH_${f:U}) - @${CP} -R ${WRKSRC}/src/${f} ${DATADIR} - @${INSTALL_DATA} ${FILESDIR}/Makefile.${f} ${DATADIR}/${f}/Makefile + ${CP} -R ${WRKSRC}/src/${f} ${DATADIR} + ${INSTALL_DATA} ${FILESDIR}/Makefile.${f} ${DATADIR}/${f}/Makefile . endif .endfor |