diff options
-rw-r--r-- | www/grail/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/grail/Makefile b/www/grail/Makefile index 7bc208f1fc2..d4106ab9655 100644 --- a/www/grail/Makefile +++ b/www/grail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 1999/04/26 19:25:07 garbled Exp $ +# $NetBSD: Makefile,v 1.7 2000/02/05 14:02:34 wiz Exp $ # DISTNAME= grail-06 @@ -25,12 +25,12 @@ do-install: ${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC} ${SED} -e "s,@PREFIX@,${PREFIX}," -e "s,@GRAILDIR@,${GRAILDIR}," \ <${FILESDIR}/grail >${PREFIX}/bin/grail - chmod 555 ${PREFIX}/bin/grail + ${CHMOD} 555 ${PREFIX}/bin/grail ${CP} -R ${WRKSRC} ${PREFIX}/${GRAILDIR} ${PREFIX}/bin/python \ ${PREFIX}/lib/python1.5/compileall.py ${PREFIX}/${GRAILDIR} - (cd ${PREFIX}; find ${GRAILDIR} -type f -print >>${PLIST_SRC}) - (cd ${PREFIX}; find -d ${GRAILDIR} -type d -print | \ + (cd ${PREFIX}; ${FIND} ${GRAILDIR} -type f -print >>${PLIST_SRC}) + (cd ${PREFIX}; ${FIND} -d ${GRAILDIR} -type d -print | \ ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC}) .include "../../mk/bsd.pkg.mk" |