Author: preining-guest
Date: 2005-12-11 10:14:33 +0000 (Sun, 11 Dec 2005)
New Revision: 394

Modified:
   tex-common/trunk/debian/changelog
   tex-common/trunk/debian/postinst.functions
Log:
Fix brace expansion in pdksh, patch from Robert Luberda 
(closes: #342781) [preining]


Modified: tex-common/trunk/debian/changelog
===================================================================
--- tex-common/trunk/debian/changelog   2005-12-11 06:08:55 UTC (rev 393)
+++ tex-common/trunk/debian/changelog   2005-12-11 10:14:33 UTC (rev 394)
@@ -8,10 +8,12 @@
   * Translations:
     - Update Czech debconf translation, thanks to Miroslav Kure
       <[EMAIL PROTECTED]> (closes: #341941) [frank]
-  * Implement --flavor for dh_installtexfonts, first flavors are only 
+  * Implement --flavor for dh_installtexfonts, first flavors are only
     for generating config files for maps [preining].
+  * Fix brace expansion in pdksh, patch from Robert Luberda 
+    (closes: #342781) [preining]
 
- -- Norbert Preining <[EMAIL PROTECTED]>  Fri,  9 Dec 2005 11:40:48 +0100
+ -- Norbert Preining <[EMAIL PROTECTED]>  Sun, 11 Dec 2005 11:12:24 +0100
 
 tex-common (0.12) unstable; urgency=low
 

Modified: tex-common/trunk/debian/postinst.functions
===================================================================
--- tex-common/trunk/debian/postinst.functions  2005-12-11 06:08:55 UTC (rev 
393)
+++ tex-common/trunk/debian/postinst.functions  2005-12-11 10:14:33 UTC (rev 
394)
@@ -126,7 +126,7 @@
     echo "Exiting."
     failed=true
   else
-    if ! echo $line | grep -q '{fonts/map,}/{\$progname,pdftex,dvips,}//'; then
+    if ! echo "$line" | grep -q '{fonts/map,}/{\$progname,pdftex,dvips,}//'; 
then
       echo
       echo "An essential entry is wrong in $file:"
       echo "TEXFONTMAPS does not contain"
@@ -139,7 +139,7 @@
     fi
     # the following is for backwards compatibility; must be dropped once all 
     # font packages follow TDS 1.1
-    if ! echo $line | grep -q '/dvips//'; then
+    if ! echo "$line" | grep -q '/dvips//'; then
       echo
       echo "An essential entry is wrong in $file:"
       echo "TEXFONTMAPS does not contain"


_______________________________________________
Pkg-tetex-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-tetex-commits

Reply via email to