From 3a8a904a7db69e17514529516d78ca7446a5bf4a Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Fri, 21 Jun 2024 22:40:28 +0000 Subject: os2 => path_sep is ; git-svn-id: svn://tug.org/texlive/trunk@71584 c570f23f-e606-0410-a88d-b1316a301751 --- Build/extra/epstopdf/epstopdf.pl | 6 ++++-- 1 file 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) { -- cgit v1.2.3