diff options
author | danfe <danfe@FreeBSD.org> | 2006-10-04 06:52:25 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2006-10-04 06:52:25 +0800 |
commit | 1ee9d65bbe77ff48073056272e1335f0cb57c8b7 (patch) | |
tree | 9f4b29237aac0723dfc290f300e107f7b310bcdf /games | |
parent | 966e30f44b5f225cdfa3ec643dd6dd59928f1c70 (diff) | |
download | freebsd-ports-gnome-1ee9d65bbe77ff48073056272e1335f0cb57c8b7.tar.gz freebsd-ports-gnome-1ee9d65bbe77ff48073056272e1335f0cb57c8b7.tar.zst freebsd-ports-gnome-1ee9d65bbe77ff48073056272e1335f0cb57c8b7.zip |
Mute the whole target, otherwise comment will show up.
Diffstat (limited to 'games')
-rw-r--r-- | games/cake/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/games/cake/Makefile b/games/cake/Makefile index b11c8355bbc9..e8a36753dc46 100644 --- a/games/cake/Makefile +++ b/games/cake/Makefile @@ -42,16 +42,16 @@ pre-everything:: @${ECHO_MSG} "Define WITH_FREEGLUT to build against FreeGLUT" .endif -post-extract: - @${FIND} -E ${WRKDIR} -type f \( -iregex ".*\.(cpp|h)" -or -name Makefile \) \ +post-extract: .SILENT + ${FIND} -E ${WRKDIR} -type f \( -iregex ".*\.(cpp|h)" -or -name Makefile \) \ -exec ${REINPLACE_CMD} -E -e 's/[[:cntrl:]]*$$//' \ -e 's/#pragma[[:blank:]]+pack[[:blank:]]*\([[:blank:]]*push[[:blank:]]*,[[:blank:]]*1[[:blank:]]*\)/#pragma pack(1)/g' \ -e 's/#pragma[[:blank:]]+pack[[:blank:]]*\([[:blank:]]*pop[[:blank:]]*\)/#pragma pack()/g' '{}' \; - @${REINPLACE_CMD} -e 's/ENABLE_SOUND 1/ENABLE_SOUND 0/' \ + ${REINPLACE_CMD} -e 's/ENABLE_SOUND 1/ENABLE_SOUND 0/' \ ${WRKSRC}/cake/sound.h - @${REINPLACE_CMD} -e 's/167/96/' ${WRKSRC}/main.cpp + ${REINPLACE_CMD} -e 's/167/96/' ${WRKSRC}/main.cpp # GCC 4.x fix - @${REINPLACE_CMD} -e 's/Mat3x2:://' ${WRKSRC}/cake/math.h + ${REINPLACE_CMD} -e 's/Mat3x2:://' ${WRKSRC}/cake/math.h do-install: ${INSTALL_PROGRAM} ${WRKSRC}/main ${PREFIX}/bin/cake |