[Python-checkins] r81209 - python/branches/py3k/Makefile.pre.in

antoine.pitrou python-checkins at python.org
Sat May 15 23:34:28 CEST 2010


Author: antoine.pitrou
Date: Sat May 15 23:34:27 2010
New Revision: 81209

Log:
Issue #8665: Fix `make pycremoval` exiting with non-zero status.



Modified:
   python/branches/py3k/Makefile.pre.in

Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in	(original)
+++ python/branches/py3k/Makefile.pre.in	Sat May 15 23:34:27 2010
@@ -1165,7 +1165,7 @@
 # files, which clobber removes as well
 pycremoval:
 	-find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
-	-find $(srcdir) -name '__pycache__' -exec rmdir {} ';'
+	-find $(srcdir) -name '__pycache__' -exec rmdir {} '+'
 
 rmtestturds:
 	-rm -f *BAD *GOOD *SKIPPED


More information about the Python-checkins mailing list