diff options
author | wiz <wiz@pkgsrc.org> | 2000-01-02 03:14:03 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-01-02 03:14:03 +0000 |
commit | 855416f2897660fc56085805e75a21144ba6c247 (patch) | |
tree | 74d62630cb5accb6f45807207a2c670af18fa2c2 /games/pysol | |
parent | 67070df67b8cb2173bdbaea6fd997dba4ce1c5d2 (diff) | |
download | pkgsrc-855416f2897660fc56085805e75a21144ba6c247.tar.gz |
replaced some commands by their ${COMMAND} counterparts
Diffstat (limited to 'games/pysol')
-rw-r--r-- | games/pysol/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/pysol/Makefile b/games/pysol/Makefile index 2bff4ab0f38..4c6a98d3784 100644 --- a/games/pysol/Makefile +++ b/games/pysol/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 1999/12/23 08:07:04 sakamoto Exp $ +# $NetBSD: Makefile,v 1.4 2000/01/02 03:20:13 wiz Exp $ # FreeBSD Id: ports/games/pysol/Makefile,v 1.20 1999/12/08 11:01:01 tg Exp DISTNAME= pysol-3.10 @@ -29,9 +29,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 \) | \ sort >> ${PLIST_SRC}; \ - for DIR in `find share/pysol -type d | sort -r`; do \ + for DIR in `${FIND} share/pysol -type d | sort -r`; do \ ${ECHO} "@dirrm $$DIR" >> ${PLIST_SRC}; \ done) |