diff options
author | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
commit | 18a916d5e6481b140ffb5e120e09d36645a44a11 (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /games/tuxmath/Makefile | |
parent | d84262f580a6d28b6b7bde5294039c4f6e0999df (diff) | |
download | pkgsrc-18a916d5e6481b140ffb5e120e09d36645a44a11.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'games/tuxmath/Makefile')
-rw-r--r-- | games/tuxmath/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/tuxmath/Makefile b/games/tuxmath/Makefile index 6d5677b8241..8b2eab0e218 100644 --- a/games/tuxmath/Makefile +++ b/games/tuxmath/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2004/01/24 13:30:57 grant Exp $ +# $NetBSD: Makefile,v 1.8 2004/01/27 00:53:11 heinz Exp $ # DISTNAME= tuxmath-2001.09.07-0102 @@ -17,7 +17,7 @@ USE_GNU_TOOLS+= make NO_CONFIGURE= # defined pre-install: - ${FIND} ${WRKSRC} -name CVS -type d | ${XARGS} ${RM} -rf + ${FIND} ${WRKSRC} -name CVS -type d -print | ${XARGS} ${RM} -rf ${RM} -rf ${WRKSRC}/data/images/.xvpics ${RM} -rf ${WRKSRC}/data/images/status/.xvpics |