summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/lib/texmfmp.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-07-15 07:24:28 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-07-15 07:24:28 +0000
commit376082647d10be8cb6f417b0554c2ebf38cfb2fe (patch)
tree791c0e334deda9bef8015378174c11676fc04c56 /Build/source/texk/web2c/lib/texmfmp.c
parent7813f69d31d5f32bc397d7586de6a41f67631f5f (diff)
Replace the deprecated spawnvp() by _spawnvp(), they differ for 64-bit MinGW
git-svn-id: svn://tug.org/texlive/trunk@34617 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/lib/texmfmp.c')
-rw-r--r--Build/source/texk/web2c/lib/texmfmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c
index 7aae9b5a6a2..f7908936ecc 100644
--- a/Build/source/texk/web2c/lib/texmfmp.c
+++ b/Build/source/texk/web2c/lib/texmfmp.c
@@ -1680,7 +1680,7 @@ parse_options (int argc, string *argv)
/* Try to start up the other end if it's not already. */
if (!ipc_is_open ()) {
#ifdef WIN32
- if (spawnlp (_P_NOWAIT, IPC_SERVER_CMD, IPC_SERVER_CMD, NULL) != -1) {
+ if (_spawnlp (_P_NOWAIT, IPC_SERVER_CMD, IPC_SERVER_CMD, NULL) != -1) {
#else
if (system (IPC_SERVER_CMD) == 0) {
#endif