r11148 - in packages/trunk/pingus/debian: . patches

Bertrand Marc bbk-guest at alioth.debian.org
Thu Jul 22 14:46:13 UTC 2010


Author: bbk-guest
Date: 2010-07-22 14:46:12 +0000 (Thu, 22 Jul 2010)
New Revision: 11148

Modified:
   packages/trunk/pingus/debian/changelog
   packages/trunk/pingus/debian/patches/60_bashisms
Log:
Fix another bashism

Modified: packages/trunk/pingus/debian/changelog
===================================================================
--- packages/trunk/pingus/debian/changelog	2010-07-22 14:35:58 UTC (rev 11147)
+++ packages/trunk/pingus/debian/changelog	2010-07-22 14:46:12 UTC (rev 11148)
@@ -4,10 +4,11 @@
   * Switch to dpkg-source 3.0 (quilt) format.
   * Refresh patches.
   * Deactivate 20_fix_FTBFS_with_gcc-4.3, seems included.
-  * Deactivate 40_fix_FTBFS_with_gcc4.4, unnecessary.
+  * Deactivate 40_fix_FTBFS_with_gcc-4.4, unnecessary.
   * Bump Standards Version to 3.9.0.
+  * update patches/60_bashisms to avoid echo -e (Closes: #535879).
 
- -- Bertrand Marc <beberking at gmail.com>  Thu, 22 Jul 2010 16:30:01 +0200
+ -- Bertrand Marc <beberking at gmail.com>  Thu, 22 Jul 2010 16:44:14 +0200
 
 pingus (0.7.2-4) unstable; urgency=low
 

Modified: packages/trunk/pingus/debian/patches/60_bashisms
===================================================================
--- packages/trunk/pingus/debian/patches/60_bashisms	2010-07-22 14:35:58 UTC (rev 11147)
+++ packages/trunk/pingus/debian/patches/60_bashisms	2010-07-22 14:46:12 UTC (rev 11148)
@@ -23,7 +23,8 @@
 -	echo -e "\t$name = $filename (type=surface, x=0, y=0, width=$width, height=$height, tcol=0);"
 +	printf "\t%s = %s (type=surface, x=0, y=0, width=%d, height=%d, tcol=0);" "$name" "$filename" "&width" "&height"
      else
- 	echo -e "\t$name = $filename (type=surface, x=0, y=0, width=$width, height=$height);"
+-	echo -e "\t$name = $filename (type=surface, x=0, y=0, width=$width, height=$height);"
++	printf "\t$name = $filename (type=surface, x=0, y=0, width=$width, height=$height);"
 +	printf "\t%s = %s (type=surface, x=0, y=0, width=%d, height=%d);" "$name" "$filename" "&width" "&height"
      fi
  




More information about the Pkg-games-commits mailing list