diff options
author | Karl Berry <karl@freefriends.org> | 2017-01-30 23:32:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-01-30 23:32:40 +0000 |
commit | 5776f6c9b6cf24e5a9b8c6bbd88d2b4bfb5c0234 (patch) | |
tree | 92b155c112ae5314c5b3d9eaad9ea805735ce10f /Master/texmf-dist/scripts | |
parent | a9b7bc30b28ec77ad1e0de52a2193de4225ad780 (diff) |
latexmk (30jan17)
git-svn-id: svn://tug.org/texlive/trunk@43099 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/latexmk/latexmk.pl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/latexmk/latexmk.pl b/Master/texmf-dist/scripts/latexmk/latexmk.pl index 578e7bef23e..0a84e0e647a 100755 --- a/Master/texmf-dist/scripts/latexmk/latexmk.pl +++ b/Master/texmf-dist/scripts/latexmk/latexmk.pl @@ -121,8 +121,8 @@ use warnings; $my_name = 'latexmk'; $My_name = 'Latexmk'; -$version_num = '4.52b'; -$version_details = "$My_name, John Collins, 17 Jan. 2017"; +$version_num = '4.52c'; +$version_details = "$My_name, John Collins, 19 Jan. 2017"; use Config; use File::Basename; @@ -195,6 +195,8 @@ else { ## ## 12 Jan 2012 STILL NEED TO DOCUMENT some items below ## +## 19 Jan 2017 John Collins Make -jobname work with -pdfxe and -pdflua +## (v. 4.53c) ## 17 Jan 2017 John Collins Fix bbl file detection bug. ## Bbl files were previously only identified ## from occurrence as input files in log @@ -1959,7 +1961,7 @@ if ( $aux_dir && ($aux_dir ne $out_dir) ) { if ( $jobname ne '' ) { $jobstring = "--jobname=\"$jobname\""; - add_option( "$jobstring", \$latex, \$pdflatex ); + add_option( "$jobstring", \$latex, \$lualatex, \$pdflatex, \$xelatex ); } # Which kind of file do we preview? |