summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2017-06-11 08:54:15 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2017-06-11 08:54:15 +0000
commit8cada474755655a7cb468072de2ad1ab9f10a78e (patch)
tree8b402b1abeea546841c6f0b54d758b8e7edcc8bc
parentdf49eb601344d41cc181c1334b06959844796ac9 (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
-rw-r--r--Build/source/texk/kpathsea/win32/ChangeLog4
-rw-r--r--Build/source/texk/kpathsea/win32/mktexfmt.c4
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 */