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/rollemup/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/rollemup/Makefile')
-rw-r--r-- | games/rollemup/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/rollemup/Makefile b/games/rollemup/Makefile index 57ca7d0822e..b27aa7c9a7d 100644 --- a/games/rollemup/Makefile +++ b/games/rollemup/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2003/11/11 12:32:36 wiz Exp $ +# $NetBSD: Makefile,v 1.24 2004/01/27 00:53:11 heinz Exp $ DISTNAME= Rollemup PKGNAME= rollemup-1.0 @@ -56,8 +56,8 @@ do-install: ${PREFIX}/${GAMES_DIR}/Rollemup @${CP} ${PKGDIR}/PLIST ${PLIST_SRC} @(cd ${PREFIX}; \ - ${FIND} ${GAMES_DIR}/Rollemup -type f >> ${PLIST_SRC}; \ - for DIR in `${FIND} ${GAMES_DIR}/Rollemup -type d | sort -r`; do \ + ${FIND} ${GAMES_DIR}/Rollemup -type f -print >> ${PLIST_SRC}; \ + for DIR in `${FIND} ${GAMES_DIR}/Rollemup -type d -print | sort -r`; do \ ${ECHO} "@dirrm $$DIR" >> ${PLIST_SRC}; \ done) @${CHOWN} ${ROOT_USER}:games ${PREFIX}/bin/Rollemup |