summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2015-06-15 07:06:22 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2015-06-15 07:06:22 +0000
commit595bf17945ab2f63fc2656e4988736bcbddfc2fe (patch)
treef72a99cbfaadfa8b5d779f4a46b78979c229eac8 /Build
parent27f205115246cc5d155b90752cb7618abea8d68f (diff)
Minor updates
git-svn-id: svn://tug.org/texlive/trunk@37546 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/texlive/linked_scripts/scripts.lst1
-rw-r--r--Build/source/texk/web2c/lib/texmfmp.c7
2 files changed, 5 insertions, 3 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/scripts.lst b/Build/source/texk/texlive/linked_scripts/scripts.lst
index 5cf86e0c337..99eed691525 100644
--- a/Build/source/texk/texlive/linked_scripts/scripts.lst
+++ b/Build/source/texk/texlive/linked_scripts/scripts.lst
@@ -88,6 +88,7 @@ musixtex/musixflx.lua
musixtex/musixtex.lua
oberdiek/pdfatfi.pl
pax/pdfannotextractor.pl
+pdfbook2/pdfbook2
pdfcrop/pdfcrop.pl
pedigree-perl/pedigree.pl
perltex/perltex.pl
diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c
index 069cc638110..b81526a8519 100644
--- a/Build/source/texk/web2c/lib/texmfmp.c
+++ b/Build/source/texk/web2c/lib/texmfmp.c
@@ -731,9 +731,6 @@ maininit (int ac, string *av)
#endif
#if defined(MF)
- /* If the program name is "mf-nowin", then reset the name as "mf". */
- if (strncasecmp (kpse_invocation_name, "mf-nowin", 8) == 0)
- kpse_reset_program_name ("mf");
#if defined(MFLua)
/* If the program name is "mflua-nowin", then reset the name as "mflua". */
if (strncasecmp (kpse_invocation_name, "mflua-nowin", 11) == 0)
@@ -742,6 +739,10 @@ maininit (int ac, string *av)
/* If the program name is "mfluajit-nowin", then reset the name as "mfluajit". */
if (strncasecmp (kpse_invocation_name, "mfluajit-nowin", 14) == 0)
kpse_reset_program_name ("mfluajit");
+#else
+ /* If the program name is "mf-nowin", then reset the name as "mf". */
+ if (strncasecmp (kpse_invocation_name, "mf-nowin", 8) == 0)
+ kpse_reset_program_name ("mf");
#endif
#endif