r11161 - in /desktop/unstable/pango1.0/debian: changelog dh_pangomodules.in

lool at users.alioth.debian.org lool at users.alioth.debian.org
Sun May 27 17:14:06 UTC 2007


Author: lool
Date: Sun May 27 17:14:06 2007
New Revision: 11161

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=11161
Log:
* Whoops. Re-commit some things that were uploaded as part of 1.16.2-2
* Use printf instead of echo in dh_gtkmodules to write to write data to
  files in complex_doit() calls as dash's echo will always honor escape
  sequences.

Modified:
    desktop/unstable/pango1.0/debian/changelog
    desktop/unstable/pango1.0/debian/dh_pangomodules.in

Modified: desktop/unstable/pango1.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pango1.0/debian/changelog?rev=11161&op=diff
==============================================================================
--- desktop/unstable/pango1.0/debian/changelog (original)
+++ desktop/unstable/pango1.0/debian/changelog Sun May 27 17:14:06 2007
@@ -1,9 +1,15 @@
 pango1.0 (1.16.4-2) UNRELEASED; urgency=low
 
-  * Whoops. Re-commit some things that were uploaded as part of 1.16.2-2 
+  [ Josselin Mouette ]
+  * Whoops. Re-commit some things that were uploaded as part of 1.16.2-2
     but not committed.
 
- -- Josselin Mouette <joss at debian.org>  Wed, 16 May 2007 01:09:07 +0200
+  [ Loic Minier ]
+  * Use printf instead of echo in dh_gtkmodules to write to write data to
+    files in complex_doit() calls as dash's echo will always honor escape
+    sequences.
+
+ -- Loic Minier <lool at dooz.org>  Sun, 27 May 2007 19:13:42 +0200
 
 pango1.0 (1.16.4-1) unstable; urgency=low
 

Modified: desktop/unstable/pango1.0/debian/dh_pangomodules.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pango1.0/debian/dh_pangomodules.in?rev=11161&op=diff
==============================================================================
--- desktop/unstable/pango1.0/debian/dh_pangomodules.in (original)
+++ desktop/unstable/pango1.0/debian/dh_pangomodules.in Sun May 27 17:14:06 2007
@@ -131,7 +131,7 @@
     if (! -d "$tmp/$module_files_d") {
         doit("install", "-d", "$tmp/$module_files_d");
     }
-    complex_doit("echo '# automatically generated by dh_pangomodules, do not edit' >>$module_file");
+    complex_doit("printf '%s\\n' '# automatically generated by dh_pangomodules, do not edit' >>$module_file");
 
     my $absolute_tmp = make_absolute_path($tmp);
     while (<QUERY>) {
@@ -141,7 +141,7 @@
         # strip build-time prefix from output
         if (m#^\Q$absolute_tmp/\E#) {
             s#^\Q$absolute_tmp/\E#/#;
-            complex_doit("echo '$_' >>$module_file");
+            complex_doit("printf '%s\\n' '$_' >>$module_file");
             next;
         }
         error("can't strip $absolute_tmp from output.");




More information about the pkg-gnome-commits mailing list