summaryrefslogtreecommitdiff
path: root/Build/extra
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2024-07-11 21:24:57 +0000
committerKarl Berry <karl@freefriends.org>2024-07-11 21:24:57 +0000
commit49cc538da1d3f30c26232bd490c7ba1ea4d8ef70 (patch)
treeca17e095b5c9f3d6564d832e911ca1526b7ca974 /Build/extra
parentf7b63981485fd1484dbb2ea6d99568b49b497bbe (diff)
epstopdf 2.36: regexp syntax.
git-svn-id: svn://tug.org/texlive/trunk@71777 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/extra')
-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 09b40b08a90..22da5e3eff9 100755
--- a/Build/extra/epstopdf/epstopdf.pl
+++ b/Build/extra/epstopdf/epstopdf.pl
@@ -36,7 +36,9 @@ use warnings;
#
# emacs-page
#
-my $ver = "2.35";
+my $ver = "2.36";
+# 2024/07/11 2.36 (Karl Berry)
+# * regexp syntax for OS/2 test, found by John Collins.
# 2024/06/21 2.35 (Karl Berry)
# * path_sep for OS/2 is also ";".
# 2024/04/29 2.34 (Karl Berry)
@@ -260,7 +262,7 @@ debug " on_cygwin=$on_cygwin, on_msys=$on_msys";
# Split PATH and use / as directory separator.
#
-my $path_sep = ($^O =~ /^(OS2|MSWin)i/) ? ';' : ':'; # 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) {