diff options
author | wiz <wiz> | 2000-02-05 07:00:59 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-02-05 07:00:59 +0000 |
commit | dd6a20b9ba11e3c79250b29f2cd6fe9ff85c01c0 (patch) | |
tree | c0e27542c8dbb5e320f6caaa68462e7a58dd17fa /textproc/lout | |
parent | 5860f53c37d54c02cf27447f7fe4baaa4149b2b2 (diff) | |
download | pkgsrc-dd6a20b9ba11e3c79250b29f2cd6fe9ff85c01c0.tar.gz |
find -> ${FIND}
Diffstat (limited to 'textproc/lout')
-rw-r--r-- | textproc/lout/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/textproc/lout/Makefile b/textproc/lout/Makefile index b23a5541613..7b86caf8120 100644 --- a/textproc/lout/Makefile +++ b/textproc/lout/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 1999/04/15 17:43:38 tsarna Exp $ +# $NetBSD: Makefile,v 1.3 2000/02/05 07:00:59 wiz Exp $ # DISTNAME= lout-3.13 @@ -17,10 +17,10 @@ do-configure: post-install: ${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC} - (cd ${PREFIX}; find share/doc/lout -type f -print >>${PLIST_SRC}) - (cd ${PREFIX}; find share/lout -type f -print >>${PLIST_SRC}) + (cd ${PREFIX}; ${FIND} share/doc/lout -type f -print >>${PLIST_SRC}) + (cd ${PREFIX}; ${FIND} share/lout -type f -print >>${PLIST_SRC}) ${ECHO} "@unexec ${RM} -rf %D/share/doc/lout" >>${PLIST_SRC} - (cd ${PREFIX}; find -d share/lout -type d -print | \ + (cd ${PREFIX}; ${FIND} -d share/lout -type d -print | \ ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC}) .include "../../mk/bsd.pkg.mk" |