[Debian-tex-commits] SVN tex-common commit + diffs: r5288 - in tex-common/trunk: debian scripts

Norbert Preining preining at alioth.debian.org
Sun Mar 25 00:42:06 UTC 2012


Author: preining
Date: 2012-03-25 00:42:05 +0000 (Sun, 25 Mar 2012)
New Revision: 5288

Modified:
   tex-common/trunk/debian/changelog
   tex-common/trunk/scripts/update-texmf
Log:
fix update-texmf bashism


Modified: tex-common/trunk/debian/changelog
===================================================================
--- tex-common/trunk/debian/changelog	2012-03-24 07:29:50 UTC (rev 5287)
+++ tex-common/trunk/debian/changelog	2012-03-25 00:42:05 UTC (rev 5288)
@@ -1,3 +1,9 @@
+tex-common (3.5) unstable; urgency=low
+
+  * fix bashism in update-texmf (Closes: #665438, #665457)
+
+ -- Norbert Preining <preining at debian.org>  Sun, 25 Mar 2012 09:36:32 +0900
+
 tex-common (3.4) unstable; urgency=low
 
   * implement support for generation of language.dat.lua for luatex

Modified: tex-common/trunk/scripts/update-texmf
===================================================================
--- tex-common/trunk/scripts/update-texmf	2012-03-24 07:29:50 UTC (rev 5287)
+++ tex-common/trunk/scripts/update-texmf	2012-03-25 00:42:05 UTC (rev 5288)
@@ -74,16 +74,16 @@
 EOF
 
 for i in ${CNFFILES}; do
-    if [ $i == "/etc/texmf/texmf.d/05TeXMF.cnf" ] ||
-       [ $i == "/etc/texmf/texmf.d/15Plain.cnf" ] ||
-       [ $i == "/etc/texmf/texmf.d/45TeXinputs.cnf" ] ||
-       [ $i == "/etc/texmf/texmf.d/55Fonts.cnf" ] ||
-       [ $i == "/etc/texmf/texmf.d/65BibTeX.cnf" ] ||
-       [ $i == "/etc/texmf/texmf.d/75DviPS.cnf" ] ||
-       [ $i == "/etc/texmf/texmf.d/80DVIPDFMx.cnf" ] ||
-       [ $i == "/etc/texmf/texmf.d/85Misc.cnf" ] ||
-       [ $i == "/etc/texmf/texmf.d/90TeXDoc.cnf" ] ||
-       [ $i == "/etc/texmf/texmf.d/95NonPath.cnf" ] ; then
+    if [ $i = "/etc/texmf/texmf.d/05TeXMF.cnf" ] ||
+       [ $i = "/etc/texmf/texmf.d/15Plain.cnf" ] ||
+       [ $i = "/etc/texmf/texmf.d/45TeXinputs.cnf" ] ||
+       [ $i = "/etc/texmf/texmf.d/55Fonts.cnf" ] ||
+       [ $i = "/etc/texmf/texmf.d/65BibTeX.cnf" ] ||
+       [ $i = "/etc/texmf/texmf.d/75DviPS.cnf" ] ||
+       [ $i = "/etc/texmf/texmf.d/80DVIPDFMx.cnf" ] ||
+       [ $i = "/etc/texmf/texmf.d/85Misc.cnf" ] ||
+       [ $i = "/etc/texmf/texmf.d/90TeXDoc.cnf" ] ||
+       [ $i = "/etc/texmf/texmf.d/95NonPath.cnf" ] ; then
        echo "Ignoring $i during generation of texmf.cnf, please remove manually!" >&2
        echo "%%% IGNORED: $i" >> ${TMPTXMF}
        continue




More information about the Debian-tex-commits mailing list