diff options
author | heinz <heinz@pkgsrc.org> | 2004-01-26 20:02:30 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-01-26 20:02:30 +0000 |
commit | 31c0c28ce5767949dc7df3ae90b3742e6e79b57b (patch) | |
tree | a52184de4f5fb7096d1ca5928d007cac04455a8b /games | |
parent | 97e79acdbe209d903b45ff9a4a7b86c9694ed892 (diff) | |
download | pkgsrc-31c0c28ce5767949dc7df3ae90b3742e6e79b57b.tar.gz |
Use find with "-print"
Diffstat (limited to 'games')
-rw-r--r-- | games/rocksndiamonds/Makefile.common | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/rocksndiamonds/Makefile.common b/games/rocksndiamonds/Makefile.common index 42000175c0c..9f0fa0b52a5 100644 --- a/games/rocksndiamonds/Makefile.common +++ b/games/rocksndiamonds/Makefile.common @@ -1,11 +1,11 @@ -# $NetBSD: Makefile.common,v 1.7 2004/01/24 13:30:56 grant Exp $ +# $NetBSD: Makefile.common,v 1.8 2004/01/26 20:02:30 heinz Exp $ # DISTNAME= rocksndiamonds-3.0.8 CATEGORIES= games x11 MASTER_SITES= http://www.artsoft.org/RELEASES/unix/rocksndiamonds/ -MAINTAINER= heinz-rnd@NetBSD.org +MAINTAINER= heinz@NetBSD.org HOMEPAGE= http://www.artsoft.org/rocksndiamonds/ USE_BUILDLINK2= YES @@ -61,11 +61,11 @@ do-install: Contributions_2001 Contributions_2002 Contributions_2003 Examples \ Tutorials cd ${PREFIX} && \ - ${FIND} share/rocksndiamonds/levels/${levdir} -type f >>${WRKDIR}/PLIST + ${FIND} share/rocksndiamonds/levels/${levdir} -type f -print >>${WRKDIR}/PLIST .endfor .for directory in graphics music sounds cd ${PREFIX} && \ - ${FIND} share/rocksndiamonds/${directory} -type f >>${WRKDIR}/PLIST + ${FIND} share/rocksndiamonds/${directory} -type f -print >>${WRKDIR}/PLIST .endfor .include "../../mk/bsd.pkg.mk" |