diff options
-rw-r--r-- | LuaSL/src/LuaSL_compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c index cf19c99..d68161a 100644 --- a/LuaSL/src/LuaSL_compile.c +++ b/LuaSL/src/LuaSL_compile.c | |||
@@ -2232,7 +2232,7 @@ static boolean doneParsing(LuaSL_compiler *compiler) | |||
2232 | outputLeaf(out, OM_LUA, compiler->ast); | 2232 | outputLeaf(out, OM_LUA, compiler->ast); |
2233 | fprintf(out, "\n\n--// End of generated code.\n\n"); | 2233 | fprintf(out, "\n\n--// End of generated code.\n\n"); |
2234 | fclose(out); | 2234 | fclose(out); |
2235 | sprintf(buffer, "luac \"%s\"", luaName); | 2235 | sprintf(buffer, "../../libraries/luajit-2.0/src/luajit \"%s\"", luaName); |
2236 | count = system(buffer); | 2236 | count = system(buffer); |
2237 | if (0 != count) | 2237 | if (0 != count) |
2238 | { | 2238 | { |