[Zope3-checkins] SVN: Zope3/trunk/Makefile 'make clean' now doesn't report an error if the files doesn't exist

Dmitry Vasiliev dima at hlabs.spb.ru
Wed Aug 24 10:13:57 EDT 2005


Log message for revision 38058:
  'make clean' now doesn't report an error if the files doesn't exist
  

Changed:
  U   Zope3/trunk/Makefile

-=-
Modified: Zope3/trunk/Makefile
===================================================================
--- Zope3/trunk/Makefile	2005-08-23 22:52:26 UTC (rev 38057)
+++ Zope3/trunk/Makefile	2005-08-24 14:13:56 UTC (rev 38058)
@@ -40,8 +40,8 @@
 clean:
 	find . \( -name '*.o' -o -name '*.so' -o -name '*.py[co]' -o -name '*.dll' \) -exec rm -f {} \;
 	rm -rf build
-	rm zopeskel/etc/package-includes/*.zcml
-	rm zopeskel/etc/securitypolicy.zcml
+	rm -f zopeskel/etc/package-includes/*.zcml
+	rm -f zopeskel/etc/securitypolicy.zcml
 
 realclean: clean
 	rm -f TAGS tags



More information about the Zope3-Checkins mailing list