summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2024-06-21 22:40:28 +0000
committerKarl Berry <karl@freefriends.org>2024-06-21 22:40:28 +0000
commit3a8a904a7db69e17514529516d78ca7446a5bf4a (patch)
tree2f4fa240fd145bd3c879e23a9174d2f6cb4532a9
parentc02277a12df41b6bdc66aa12a324422f17f285e5 (diff)
os2 => path_sep is ;
git-svn-id: svn://tug.org/texlive/trunk@71584 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xBuild/extra/epstopdf/epstopdf.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/Build/extra/epstopdf/epstopdf.pl b/Build/extra/epstopdf/epstopdf.pl
index 83136607dd1..09b40b08a90 100755
--- a/Build/extra/epstopdf/epstopdf.pl
+++ b/Build/extra/epstopdf/epstopdf.pl
@@ -36,7 +36,9 @@ use warnings;
#
# emacs-page
#
-my $ver = "2.34";
+my $ver = "2.35";
+# 2024/06/21 2.35 (Karl Berry)
+# * path_sep for OS/2 is also ";".
# 2024/04/29 2.34 (Karl Berry)
# * if --debug is first argument, give more output.
# * do not check for kpsewhich in PATH unless restricted.
@@ -258,7 +260,7 @@ debug " on_cygwin=$on_cygwin, on_msys=$on_msys";
# Split PATH and use / as directory separator.
#
-my $path_sep = ( ($^O =~ /^MSWin/) ? ';' : ':' ); # not msys
+my $path_sep = ($^O =~ /^(OS2|MSWin)i/) ? ';' : ':'; # not msys
my @pdirs = split($path_sep, $ENV{"PATH"});
# Normalize directory separators to /. Always valid on Windows.
if ($on_windows_or_cygwin) {