Avoid using the non-standard "-d" option of BSD find(1).

This commit is contained in:
minskim 2005-06-06 02:25:34 +00:00
parent 6a5e06a6ca
commit 56215cb163

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.6 2003/07/22 04:14:41 martti Exp $
# $NetBSD: Makefile,v 1.7 2005/06/06 02:25:34 minskim Exp $
DISTNAME= DocumentLibrary-1.0rc1
PKGREVISION= 1
@ -15,7 +15,7 @@ DEPENDS+= zope25-BTreeFolder-[0-9]*:../../www/zope25-BTreeFolder
ZOPE_COPYPRODUCT= zope-std-copyproduct-short
post-extract:
${FIND} -d ${WRKSRC} -name CVS -type d -exec ${RM} -rf {} \;
d=`${FIND} ${WRKSRC} -name CVS -type d`; ${RM} -rf $${d}
.include "../../www/zope25/product.mk"
.include "../../mk/bsd.pkg.mk"