You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ns...@apache.org on 2010/07/05 16:54:04 UTC

svn commit: r960614 - /couchdb/trunk/Makefile.am

Author: nslater
Date: Mon Jul  5 14:54:04 2010
New Revision: 960614

URL: http://svn.apache.org/viewvc?rev=960614&view=rev
Log:
improved find invokation for portability

Modified:
    couchdb/trunk/Makefile.am

Modified: couchdb/trunk/Makefile.am
URL: http://svn.apache.org/viewvc/couchdb/trunk/Makefile.am?rev=960614&r1=960613&r2=960614&view=diff
==============================================================================
--- couchdb/trunk/Makefile.am (original)
+++ couchdb/trunk/Makefile.am Mon Jul  5 14:54:04 2010
@@ -123,11 +123,11 @@ local-clean: maintainer-clean
 	rm -f $(top_srcdir)/test/etap/temp.*
 	rm -f $(top_srcdir)/*.tar.gz
 	rm -f $(top_srcdir)/*.tar.gz.*
-	find $(top_srcdir) -name Makefile.in -exec rm {} \;
+	find $(top_srcdir) -name Makefile.in -exec rm -f {} \;
 
 dist-hook:
-	find $(top_srcdir) -type f -name "._*" -delete
-	find $(top_builddir) -type f -name "._*" -delete
+	find $(top_srcdir) -type f -name "._*" -exec rm -f {} \;
+	find $(top_builddir) -type f -name "._*" -exec rm -f {} \;
 
 distcheck-hook:
 	grep -rL 'http://www.apache.org/licenses/LICENSE-2.0' * \