summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2013-02-03 14:35:37 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2013-02-03 14:35:37 +0000
commita98986b1e6425808eae7a80f25c3c311264f8b25 (patch)
tree84a543cc5f9a40049fa08c486afa2a808fb66e29 /Build
parent6c85881ddbe5df91d6e5f0ac93048f52b532f82b (diff)
(W32) change to match the simplified win32_popen.
git-svn-id: svn://tug.org/texlive/trunk@29016 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/xetexdir/ChangeLog4
-rw-r--r--Build/source/texk/web2c/xetexdir/XeTeX_ext.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/xetexdir/ChangeLog b/Build/source/texk/web2c/xetexdir/ChangeLog
index 5ab760dc9ec..1b31ccb6530 100644
--- a/Build/source/texk/web2c/xetexdir/ChangeLog
+++ b/Build/source/texk/web2c/xetexdir/ChangeLog
@@ -1,3 +1,7 @@
+2013-02-03 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
+
+ * XeTeX_ext.c: (W32) change to match the simplified win32_popen.
+
2013-01-11 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
* XeTeX_ext.h: Add #ifndef __cplusplus ... #endif for
diff --git a/Build/source/texk/web2c/xetexdir/XeTeX_ext.c b/Build/source/texk/web2c/xetexdir/XeTeX_ext.c
index 97531e8f788..f0fb9fde1f3 100644
--- a/Build/source/texk/web2c/xetexdir/XeTeX_ext.c
+++ b/Build/source/texk/web2c/xetexdir/XeTeX_ext.c
@@ -2844,7 +2844,7 @@ open_dvi_output(FILE** fptr)
*p++ = *pp++;
}
*p = '\0';
- fullcmd = concatn("\"", bindir, "\\", prgnam, "\"", pp, NULL);
+ fullcmd = concatn("\"\"", bindir, "\\", prgnam, "\"", pp, "\"", NULL);
*fptr = popen(fullcmd, "w");
free(bindir);
free(prgnam);