summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-09-15 22:05:35 +0000
committerKarl Berry <karl@freefriends.org>2023-09-15 22:05:35 +0000
commit57510e23fb14deaea0a70d24fdb56b0508c4147c (patch)
tree9218ab199f0416fb9e482cd82c362c72fceab45f /Build
parent122a9fef40a36e16ba5bbec1528cc2fb2cb396cd (diff)
(check_prog_exists): Cygwin PATH separator is :. Report from Alois Stendl,
https://tug.org/pipermail/tex-live/2023-September/049474.html. git-svn-id: svn://tug.org/texlive/trunk@68287 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-xBuild/extra/epstopdf/epstopdf.pl7
1 files changed, 5 insertions, 2 deletions
diff --git a/Build/extra/epstopdf/epstopdf.pl b/Build/extra/epstopdf/epstopdf.pl
index e8a74ba52ed..155dfb8f9be 100755
--- a/Build/extra/epstopdf/epstopdf.pl
+++ b/Build/extra/epstopdf/epstopdf.pl
@@ -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 @@ sub check_prog_exists {
}
# 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") {