r28971 - in /desktop/unstable/gdk-pixbuf/debian: changelog rules

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Wed Jul 20 19:25:43 UTC 2011


Author: biebl
Date: Wed Jul 20 19:25:42 2011
New Revision: 28971

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=28971
Log:
* debian/rules:
  - Trap errors in for loop using 'set -e'.

Modified:
    desktop/unstable/gdk-pixbuf/debian/changelog
    desktop/unstable/gdk-pixbuf/debian/rules

Modified: desktop/unstable/gdk-pixbuf/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gdk-pixbuf/debian/changelog?rev=28971&op=diff
==============================================================================
--- desktop/unstable/gdk-pixbuf/debian/changelog [utf-8] (original)
+++ desktop/unstable/gdk-pixbuf/debian/changelog [utf-8] Wed Jul 20 19:25:42 2011
@@ -1,3 +1,10 @@
+gdk-pixbuf (2.23.5-3) UNRELEASED; urgency=low
+
+  * debian/rules:
+    - Trap errors in for loop using 'set -e'.
+
+ -- Michael Biebl <biebl at debian.org>  Sat, 16 Jul 2011 01:39:22 +0200
+
 gdk-pixbuf (2.23.5-2) unstable; urgency=low
 
   [ Steve Langasek ]

Modified: desktop/unstable/gdk-pixbuf/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gdk-pixbuf/debian/rules?rev=28971&op=diff
==============================================================================
--- desktop/unstable/gdk-pixbuf/debian/rules [utf-8] (original)
+++ desktop/unstable/gdk-pixbuf/debian/rules [utf-8] Wed Jul 20 19:25:42 2011
@@ -20,14 +20,14 @@
 		> debian/libgdk-pixbuf2.0-0-udeb/usr/lib/$(DEB_HOST_MULTIARCH)/gdk-pixbuf-2.0/2.10.0/loaders.cache
 
 binary-install/libgdk-pixbuf2.0-0::
-	for script in postinst postrm; do \
+	set -e; for script in postinst postrm; do \
 		sed -e"s/#MULTIARCH#/$(DEB_HOST_MULTIARCH)/g" \
 		    debian/$(cdbs_curpkg).$$script.in \
 		    > debian/$(cdbs_curpkg).$$script ; \
 	done
 
 common-install-arch::
-	for file in libgdk-pixbuf2.0-0.install libgdk-pixbuf2.0-dev.links \
+	set -e; for file in libgdk-pixbuf2.0-0.install libgdk-pixbuf2.0-dev.links \
 		libgdk-pixbuf2.0-0.triggers; \
 	do \
 		sed -e"s,\$${DEB_HOST_MULTIARCH},${DEB_HOST_MULTIARCH},g" \




More information about the pkg-gnome-commits mailing list