aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_compile.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-21 18:59:33 +1000
committerDavid Walter Seikel2014-04-21 18:59:33 +1000
commit6099a79ef6397ca80cc892fecbfe7faf5b49cb00 (patch)
treefcfa1ca724cf5e68deddc808ed965ac68c4c4071 /LuaSL/src/LuaSL_compile.c
parentConvert LuaSL to use LumbrJack. (diff)
downloadSledjHamr-6099a79ef6397ca80cc892fecbfe7faf5b49cb00.zip
SledjHamr-6099a79ef6397ca80cc892fecbfe7faf5b49cb00.tar.gz
SledjHamr-6099a79ef6397ca80cc892fecbfe7faf5b49cb00.tar.bz2
SledjHamr-6099a79ef6397ca80cc892fecbfe7faf5b49cb00.tar.xz
Move images to the base directory, and point all the special EFL directories to the base.
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c
index afff67f..4a0a42f 100644
--- a/LuaSL/src/LuaSL_compile.c
+++ b/LuaSL/src/LuaSL_compile.c
@@ -2119,9 +2119,9 @@ boolean compilerSetup(gameGlobals *ourGlobals)
2119 } 2119 }
2120 2120
2121 // Compile the constants. 2121 // Compile the constants.
2122 snprintf(buf, sizeof(buf), "lua -e 'require(\"LSL\").gimmeLSL()' > %s/constants.lsl", PACKAGE_DATA_DIR); 2122 snprintf(buf, sizeof(buf), "lua -e 'require(\"LSL\").gimmeLSL()' > %s/LuaSL/constants.lsl", PACKAGE_DATA_DIR);
2123 system(buf); 2123 system(buf);
2124 snprintf(buf, sizeof(buf), "%s/constants.lsl", PACKAGE_DATA_DIR); 2124 snprintf(buf, sizeof(buf), "%s/LuaSL/constants.lsl", PACKAGE_DATA_DIR);
2125 compileLSL(ourGlobals, NULL, "FAKE_SID", buf, TRUE); 2125 compileLSL(ourGlobals, NULL, "FAKE_SID", buf, TRUE);
2126 2126
2127 return TRUE; 2127 return TRUE;