diff options
-rw-r--r-- | Build/source/texk/kpathsea/win32/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/win32/mktexfmt.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/win32/ChangeLog b/Build/source/texk/kpathsea/win32/ChangeLog index e164530fff9..9aa59ca389d 100644 --- a/Build/source/texk/kpathsea/win32/ChangeLog +++ b/Build/source/texk/kpathsea/win32/ChangeLog @@ -1,3 +1,7 @@ +2017-06-11 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + * mktexfmt.c: Use fmtutil-user for consistency with other platforms. + 2017-06-04 Akira Kakuto <kakuto@fuk.kindai.ac.jp> * mktexfmt.c: Adapt to the new fmtutil.pl in TeX Live. diff --git a/Build/source/texk/kpathsea/win32/mktexfmt.c b/Build/source/texk/kpathsea/win32/mktexfmt.c index 04a5c4acc5a..169e62f5d3a 100644 --- a/Build/source/texk/kpathsea/win32/mktexfmt.c +++ b/Build/source/texk/kpathsea/win32/mktexfmt.c @@ -116,9 +116,9 @@ int main(int ac, char **av) fprintf(stderr, "Running the command %s\n", fullbin); _spawnlp(_P_WAIT, fullbin, "fmtutil", "--byfmt", av[1], NULL); } else { - strcat(fullbin, "fmtutil-sys.exe"); + strcat(fullbin, "fmtutil-user.exe"); fprintf(stderr, "Running the command %s\n", fullbin); - _spawnlp(_P_WAIT, fullbin, "fmtutil-sys", "--byfmt", av[1], NULL); + _spawnlp(_P_WAIT, fullbin, "fmtutil-user", "--byfmt", av[1], NULL); } /* END COMMAND */ |