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

barry.warsaw python-checkins at python.org
Mon Apr 26 18:02:15 CEST 2010


Author: barry.warsaw
Date: Mon Apr 26 18:02:14 2010
New Revision: 80502

Log:
Ignore errors.


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	Mon Apr 26 18:02:14 2010
@@ -1160,8 +1160,8 @@
 # Sanitation targets -- clean leaves libraries, executables and tags
 # files, which clobber removes as well
 pycremoval:
-	find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
-	find $(srcdir) -name '__pycache__' -exec rmdir {} ';'
+	-find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
+	-find $(srcdir) -name '__pycache__' -exec rmdir {} ';'
 
 rmtestturds:
 	-rm -f *BAD *GOOD *SKIPPED


More information about the Python-checkins mailing list