Revision: 728
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=728&view=rev
Author: mithro
Date: 2008-09-03 07:36:34 +0000 (Wed, 03 Sep 2008)
Log Message:
-----------
Make sure that the rm always succeed.
Modified Paths:
--------------
trunk/python-ogre/debian/rules
Modified: trunk/python-ogre/debian/rules
===================================================================
--- trunk/python-ogre/debian/rules 2008-09-03 07:03:08 UTC (rev 727)
+++ trunk/python-ogre/debian/rules 2008-09-03 07:36:34 UTC (rev 728)
@@ -43,9 +43,9 @@
clean:
dh_testdir
dh_testroot
- rm -f build-python*
- rm -rf build
- rm *-stamp*
+ rm -f build-python* || true
+ rm -rf build || true
+ rm *-stamp* || true
-find . -name '*.py[co]' | xargs rm -f
dh_clean
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|