summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c
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/source/texk/web2c
parent27f205115246cc5d155b90752cb7618abea8d68f (diff)
Minor updates
git-svn-id: svn://tug.org/texlive/trunk@37546 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c')
-rw-r--r--Build/source/texk/web2c/lib/texmfmp.c7
1 files changed, 4 insertions, 3 deletions
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