diff options
author | minskim <minskim> | 2005-06-06 02:25:34 +0000 |
---|---|---|
committer | minskim <minskim> | 2005-06-06 02:25:34 +0000 |
commit | f5ce1703aae24387ba210f44ef0420f7ace56d1a (patch) | |
tree | 63187f54c9753bcae63068f5ee66c6cd169b7283 /www/zope25-DocumentLibrary | |
parent | 9ac8de70e2f1c0ff9a935125856e125171d75154 (diff) | |
download | pkgsrc-f5ce1703aae24387ba210f44ef0420f7ace56d1a.tar.gz |
Avoid using the non-standard "-d" option of BSD find(1).
Diffstat (limited to 'www/zope25-DocumentLibrary')
-rw-r--r-- | www/zope25-DocumentLibrary/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/zope25-DocumentLibrary/Makefile b/www/zope25-DocumentLibrary/Makefile index 4f4bd460e3e..25b1f9c4356 100644 --- a/www/zope25-DocumentLibrary/Makefile +++ b/www/zope25-DocumentLibrary/Makefile @@ -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" |