summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2010-04-23 19:07:01 +0000
committerTaco Hoekwater <taco@elvenkind.com>2010-04-23 19:07:01 +0000
commit6041aa94f621741a5e1199e7c86d9716483b69ac (patch)
treef4e229485e64740ed92cb2a7cfac38b2c6ced420 /Build
parent3646eb2fe67978d8fce7d8133e1fc60a562ef2aa (diff)
oops. there was a bug in the previous luatex patch
git-svn-id: svn://tug.org/texlive/trunk@17977 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/luatexdir/ChangeLog4
-rw-r--r--Build/source/texk/web2c/luatexdir/lua/loslibext.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/luatexdir/ChangeLog b/Build/source/texk/web2c/luatexdir/ChangeLog
index fb508143f96..2dbb702ea7d 100644
--- a/Build/source/texk/web2c/luatexdir/ChangeLog
+++ b/Build/source/texk/web2c/luatexdir/ChangeLog
@@ -1,5 +1,9 @@
2010-04-23 Taco Hoekwater <taco@luatex>
+ * lua/loslibext.c: fix os.exec() and os.spawn() once more
+
+2010-04-23 Taco Hoekwater <taco@luatex>
+
* lua/loslibext.c: fix os.exec() and os.spawn()
* luatex_svnversion.h: updated to reflect the version of 0.60.x branch
diff --git a/Build/source/texk/web2c/luatexdir/lua/loslibext.c b/Build/source/texk/web2c/luatexdir/lua/loslibext.c
index 4cc6af2c285..8cbeb086650 100644
--- a/Build/source/texk/web2c/luatexdir/lua/loslibext.c
+++ b/Build/source/texk/web2c/luatexdir/lua/loslibext.c
@@ -150,7 +150,7 @@ static int exec_command(const char *file, char *const *argv, char *const *envp)
size_t prefixlen, filelen, totallen;
if (strchr(file, '/')) /* Specific path */
- return envp ? execv(file, argv) : execve(file, argv, envp);
+ return envp ? execv(file, argv, envp) : execve(file, argv);
filelen = strlen(file);
path = NULL;