texlive[68287] Build/extra/epstopdf/epstopdf.pl: (check_prog_exists):

commits+karl at tug.org commits+karl at tug.org
Sat Sep 16 00:05:35 CEST 2023


Revision: 68287
          http://tug.org/svn/texlive?view=revision&revision=68287
Author:   karl
Date:     2023-09-16 00:05:35 +0200 (Sat, 16 Sep 2023)
Log Message:
-----------
(check_prog_exists): Cygwin PATH separator is :. Report from Alois Stendl,
https://tug.org/pipermail/tex-live/2023-September/049474.html.

Modified Paths:
--------------
    trunk/Build/extra/epstopdf/epstopdf.pl

Modified: trunk/Build/extra/epstopdf/epstopdf.pl
===================================================================
--- trunk/Build/extra/epstopdf/epstopdf.pl	2023-09-15 21:40:25 UTC (rev 68286)
+++ trunk/Build/extra/epstopdf/epstopdf.pl	2023-09-15 22:05:35 UTC (rev 68287)
@@ -35,7 +35,10 @@
 #
 # emacs-page
 #
-my $ver = "2.32";
+my $ver = "2.33";
+#  2023/09/15 2.33 (Karl Berry)
+#    * Cygwin PATH separator is :. Report from Alois Stendl,
+#    https://tug.org/pipermail/tex-live/2023-September/049474.html
 #  2023/07/08 2.32 (Karl Berry)
 #    * check that kpsewhich and gs are in PATH.
 #    * correct TL path for kpsewhich to bin/windows.
@@ -542,7 +545,7 @@
   }
 
   # not absolute, check path
-  for my $dir (split ($on_windows_or_cygwin ? ";" : ":", $ENV{"PATH"})) {
+  for my $dir (split ($on_windows ? ";" : ":", $ENV{"PATH"})) {
     $dir = "." if $dir eq ""; # empty path element
     debug " Checking dir $dir";
     if (-x "$dir/$prog") {



More information about the tex-live-commits mailing list.