diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2017-06-11 08:54:15 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2017-06-11 08:54:15 +0000 |
commit | 8cada474755655a7cb468072de2ad1ab9f10a78e (patch) | |
tree | 8b402b1abeea546841c6f0b54d758b8e7edcc8bc /Build/source | |
parent | df49eb601344d41cc181c1334b06959844796ac9 (diff) |
kpathsea/win32/mktexfmt.c: Use fmtutil-user for consistency with other platforms
git-svn-id: svn://tug.org/texlive/trunk@44560 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-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 */ |