[Python-modules-commits] r20300 - in packages/pythonmagick/trunk/debian (changelog rules)

sramacher-guest at users.alioth.debian.org sramacher-guest at users.alioth.debian.org
Sat Feb 4 14:19:53 UTC 2012


    Date: Saturday, February 4, 2012 @ 14:19:52
  Author: sramacher-guest
Revision: 20300

debian/rules: Run loops with set -e.

Modified:
  packages/pythonmagick/trunk/debian/changelog
  packages/pythonmagick/trunk/debian/rules

Modified: packages/pythonmagick/trunk/debian/changelog
===================================================================
--- packages/pythonmagick/trunk/debian/changelog	2012-02-04 13:00:19 UTC (rev 20299)
+++ packages/pythonmagick/trunk/debian/changelog	2012-02-04 14:19:52 UTC (rev 20300)
@@ -1,3 +1,9 @@
+pythonmagick (0.9.7-3) UNRELEASED; urgency=low
+
+  * debian/rules: Run loops with set -e.
+
+ -- Sebastian Ramacher <s.ramacher at gmx.at>  Sat, 04 Feb 2012 13:48:11 +0100
+
 pythonmagick (0.9.7-2) unstable; urgency=low
 
   * Team upload.

Modified: packages/pythonmagick/trunk/debian/rules
===================================================================
--- packages/pythonmagick/trunk/debian/rules	2012-02-04 13:00:19 UTC (rev 20299)
+++ packages/pythonmagick/trunk/debian/rules	2012-02-04 14:19:52 UTC (rev 20300)
@@ -9,23 +9,23 @@
 	dh --with python-support --with quilt --with autoreconf $@;
 
 override_dh_auto_clean:
-	set -x && for pyver in $(PYVERSIONS); do \
+	set -e && for pyver in $(PYVERSIONS); do \
 		PYTHON=python$$pyver dh_auto_clean -Bbuild/py$$pyver; \
 	done
 
 override_dh_auto_configure:
-	set -x && for pyver in $(PYVERSIONS); do \
+	set -e && for pyver in $(PYVERSIONS); do \
 		mkdir -p build/py$$pyver; \
 		PYTHON=python$$pyver dh_auto_configure -Bbuild/py$$pyver; \
 	done
 
 override_dh_auto_build:
-	set -x && for pyver in $(PYVERSIONS); do \
+	set -e && for pyver in $(PYVERSIONS); do \
 		PYTHON=python$$pyver dh_auto_build -Bbuild/py$$pyver; \
 	done
 
 override_dh_auto_install:
-	set -x && for pyver in $(PYVERSIONS); do \
+	set -e && for pyver in $(PYVERSIONS); do \
 		PYTHON=python$$pyver dh_auto_install -Bbuild/py$$pyver; \
 	done
 




More information about the Python-modules-commits mailing list