diff options
author | wiz <wiz> | 2000-02-05 07:00:59 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-02-05 07:00:59 +0000 |
commit | cf6d4bee8e3fd10dd3ec87b432b295ab6828df5c (patch) | |
tree | c0e27542c8dbb5e320f6caaa68462e7a58dd17fa | |
parent | a0091632f1e9cb3f03a1d9cbfefd1d4ff98e8719 (diff) | |
download | pkgsrc-cf6d4bee8e3fd10dd3ec87b432b295ab6828df5c.tar.gz |
find -> ${FIND}
-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" |