pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/zope25-DocumentLibrary Avoid using the non-standar...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/11436f619bee
branches:  trunk
changeset: 495264:11436f619bee
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Mon Jun 06 02:25:34 2005 +0000

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

diffstat:

 www/zope25-DocumentLibrary/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r f2b6dfe0e802 -r 11436f619bee www/zope25-DocumentLibrary/Makefile
--- a/www/zope25-DocumentLibrary/Makefile       Mon Jun 06 01:53:27 2005 +0000
+++ b/www/zope25-DocumentLibrary/Makefile       Mon Jun 06 02:25:34 2005 +0000
@@ -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 @@
 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"



Home | Main Index | Thread Index | Old Index