[Python-modules-commits] r3681 - /packages/pyicu/trunk/debian/rules

bzed-guest at users.alioth.debian.org bzed-guest at users.alioth.debian.org
Sun Nov 18 19:37:54 UTC 2007


Author: bzed-guest
Date: Sun Nov 18 19:37:54 2007
New Revision: 3681

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=3681
Log:
let's make POX happy :P

Modified:
    packages/pyicu/trunk/debian/rules

Modified: packages/pyicu/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/debian/rules?rev=3681&op=diff
==============================================================================
--- packages/pyicu/trunk/debian/rules (original)
+++ packages/pyicu/trunk/debian/rules Sun Nov 18 19:37:54 2007
@@ -41,7 +41,7 @@
 	-for py in $(PYVERS); do  \
 	    python$$py setup.py clean; \
 	done
-	find . -name \*.pyc | xargs rm -f
+	find . -name "\*.pyc" -print0 | xargs -0 rm -f
 	rm -rf build
 	dh_clean 
 
@@ -56,9 +56,9 @@
 	    python$$py setup.py install --root=$(CURDIR)/debian/$(PKGNAME) ;\
 	    python$$py-dbg setup.py install --root=$(CURDIR)/debian/$(PKGNAME)-dbg ;\
 	done
-	find $(CURDIR)/debian/$(PKGNAME)-dbg -name \*.pyc -print0 | xargs -0 rm -f
-	find $(CURDIR)/debian/$(PKGNAME)-dbg -name \*.py -print0 | xargs -0 rm -f
-	find $(CURDIR)/debian/$(PKGNAME)-dbg -name \*.egg-info -print0 | xargs -0 rm -f
+	find $(CURDIR)/debian/$(PKGNAME)-dbg -name "\*.pyc" -print0 | xargs -0 rm -f
+	find $(CURDIR)/debian/$(PKGNAME)-dbg -name "\*.py" -print0 | xargs -0 rm -f
+	find $(CURDIR)/debian/$(PKGNAME)-dbg -name "\*.egg-info" -print0 | xargs -0 rm -f
 
 	dh_installdocs
 	dh_installexamples




More information about the Python-modules-commits mailing list