diff options
Diffstat (limited to 'textproc')
-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" |