Skip to content

Commit

Permalink
epstopdf (12jul24)
Browse files Browse the repository at this point in the history
git-svn-id: svn://tug.org/texlive/trunk/Build/source@71782 c570f23f-e606-0410-a88d-b1316a301751
  • Loading branch information
kberry committed Jul 12, 2024
1 parent 001b007 commit f17cbe2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions texk/texlive/linked_scripts/epstopdf/epstopdf.pl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env perl
use warnings;
# $Id: epstopdf.pl 71584 2024-06-21 22:40:28Z karl $
# $Id: epstopdf.pl 71777 2024-07-11 21:24:57Z karl $
# (Copyright lines below.)
#
# Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -36,7 +36,9 @@
#
# 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)
Expand Down Expand Up @@ -228,7 +230,7 @@
### emacs-page
### program identification
my $program = "epstopdf";
my $ident = '($Id: epstopdf.pl 71584 2024-06-21 22:40:28Z karl $)' . " $ver";
my $ident = '($Id: epstopdf.pl 71777 2024-07-11 21:24:57Z karl $)' . " $ver";
my $copyright = <<END_COPYRIGHT ;
Copyright 2009-2024 Karl Berry et al.
Copyright 2002-2009 Gerben Wierda et al.
Expand Down Expand Up @@ -260,7 +262,7 @@

# 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) {
Expand Down

0 comments on commit f17cbe2

Please sign in to comment.