[subversion-commit] SVN tetex commit + diffs: r394 - tex-common/trunk/debian

Norbert Preining preining-guest at costa.debian.org
Sun Dec 11 10:14:34 UTC 2005


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
       <kurem at upcase.inf.upol.cz> (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 <preining at logic.at>  Fri,  9 Dec 2005 11:40:48 +0100
+ -- Norbert Preining <preining at logic.at>  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"




More information about the Pkg-tetex-commits mailing list