texlive[41293] Build/source/texk/kpathsea: Fix TEXMFOUTPUT bug (w32

commits+kakuto at tug.org commits+kakuto at tug.org
Mon Jun 6 09:10:38 CEST 2016


Revision: 41293
          http://tug.org/svn/texlive?view=revision&revision=41293
Author:   kakuto
Date:     2016-06-06 09:10:37 +0200 (Mon, 06 Jun 2016)
Log Message:
-----------
Fix TEXMFOUTPUT bug (w32 only)

Modified Paths:
--------------
    trunk/Build/source/texk/kpathsea/ChangeLog
    trunk/Build/source/texk/kpathsea/tex-file.c

Modified: trunk/Build/source/texk/kpathsea/ChangeLog
===================================================================
--- trunk/Build/source/texk/kpathsea/ChangeLog	2016-06-05 23:45:15 UTC (rev 41292)
+++ trunk/Build/source/texk/kpathsea/ChangeLog	2016-06-06 07:10:37 UTC (rev 41293)
@@ -1,3 +1,8 @@
+2016-05-28  Akira Kakuto  <kakuto at fuk.kindai.ac.jp>
+
+	* tex-file.c: Fix a bug that TEXMFOUTPUT does not work (w32 only).
+	See http://tug.org/pipermail/tex-k/2016-May/002719.html.
+
 2016-05-20  Karl Berry  <karl at tug.org>
 
 	* Version 6.2.2 for TeX Live 2016.

Modified: trunk/Build/source/texk/kpathsea/tex-file.c
===================================================================
--- trunk/Build/source/texk/kpathsea/tex-file.c	2016-06-05 23:45:15 UTC (rev 41292)
+++ trunk/Build/source/texk/kpathsea/tex-file.c	2016-06-06 07:10:37 UTC (rev 41293)
@@ -1304,7 +1304,7 @@
       pp = kpse->suffixlist;
       if (pp && q) {
         while (*pp) {
-          if (strchr (fname, ':') || !strcmp (q, *pp)) {
+          if (!strcmp (q, *pp)) {
             if (!silent)
               fprintf (stderr, "\n%s: Forbidden to open for writing\n", fname);
             free (base);



More information about the tex-live-commits mailing list