aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/LuaSL/LuaSL_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/LuaSL/LuaSL_main.c')
-rw-r--r--src/LuaSL/LuaSL_main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/LuaSL/LuaSL_main.c b/src/LuaSL/LuaSL_main.c
index 0e70fe4..c28fe4a 100644
--- a/src/LuaSL/LuaSL_main.c
+++ b/src/LuaSL/LuaSL_main.c
@@ -328,7 +328,13 @@ int main(int argc, char **argv)
328 328
329 if (eina_init()) 329 if (eina_init())
330 { 330 {
331 char temp[PATH_MAX];
332
331 logDom = HamrTime(argv[0], main, logDom); 333 logDom = HamrTime(argv[0], main, logDom);
334 // Create our home directories, if not already created.
335 // This should be in HamrTime, bit I had a HardTime getting LumbrJack to link to ecore-file.
336 sprintf(temp, "%s/.SledjHamr", eina_environment_home_get());
337 ecore_file_mksubdirs(temp, dirs);
332 ourGlobals.names = eina_hash_string_superfast_new(NULL); 338 ourGlobals.names = eina_hash_string_superfast_new(NULL);
333 if (ecore_init()) 339 if (ecore_init())
334 { 340 {