summaryrefslogtreecommitdiff
path: root/games/pysol
diff options
context:
space:
mode:
authorheinz <heinz>2004-01-27 00:53:10 +0000
committerheinz <heinz>2004-01-27 00:53:10 +0000
commitc4a746650ec3ce51092f46b30440ee814f6dbcaa (patch)
tree0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /games/pysol
parentd8e3f2f0d5830a73b60fbd37e5d63bfc0282c3c6 (diff)
downloadpkgsrc-c4a746650ec3ce51092f46b30440ee814f6dbcaa.tar.gz
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'games/pysol')
-rw-r--r--games/pysol/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/pysol/Makefile b/games/pysol/Makefile
index a8e421688ff..b8a1438ae89 100644
--- a/games/pysol/Makefile
+++ b/games/pysol/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2003/07/17 21:39:16 grant Exp $
+# $NetBSD: Makefile,v 1.16 2004/01/27 00:53:11 heinz Exp $
#
DISTNAME= pysol-4.81
@@ -32,9 +32,9 @@ do-install:
post-install:
@${CP} ${PKGDIR}/PLIST ${PLIST_SRC}
@(cd ${PREFIX}; \
- ${FIND} share/pysol \( -type f -or -type l \) | \
+ ${FIND} share/pysol \( -type f -or -type l \) -print | \
sort >> ${PLIST_SRC}; \
- for DIR in `${FIND} share/pysol -type d | sort -r`; do \
+ for DIR in `${FIND} share/pysol -type d -print | sort -r`; do \
${ECHO} "@dirrm $$DIR" >> ${PLIST_SRC}; \
done)