[Python-checkins] r43076 - python/trunk/Makefile.pre.in

thomas.heller python-checkins at python.org
Thu Mar 16 08:33:50 CET 2006


Author: thomas.heller
Date: Thu Mar 16 08:33:49 2006
New Revision: 43076

Modified:
   python/trunk/Makefile.pre.in
Log:
Don't delete non-autogenerated source files when cleaning up.


Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Thu Mar 16 08:33:49 2006
@@ -974,8 +974,8 @@
 	find . -name '*.o' -exec rm -f {} ';'
 	find . -name '*.s[ol]' -exec rm -f {} ';'
 	find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
-	find $(srcdir) -name 'fficonfig.h' -exec rm -f {} ';'
-	find $(srcdir) -name 'fficonfig.py' -exec rm -f {} ';'
+	find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
+	find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
 
 clobber: clean
 	-rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \


More information about the Python-checkins mailing list