From 96b8c7be67d23764dd1430f0372ca49c2310e776 Mon Sep 17 00:00:00 2001 From: chaoskagami Date: Sat, 6 Aug 2016 01:41:16 -0400 Subject: [PATCH] Correct some f_mkdir fuckery. Sorry for the inconvenience. --- include/corbconf.h | 8 -------- source/option.c | 3 +-- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/include/corbconf.h b/include/corbconf.h index 419b3f7..cec84b7 100644 --- a/include/corbconf.h +++ b/include/corbconf.h @@ -3,12 +3,4 @@ #include -#ifndef ROOT -#define ROOT "/corbenik" -#endif - -#ifndef DATA -#define DATA ROOT -#endif - #endif diff --git a/source/option.c b/source/option.c index 29b46d5..b54dbb5 100644 --- a/source/option.c +++ b/source/option.c @@ -27,8 +27,7 @@ regenerate_config() void mk_structure() { - f_mkdir(ROOT); - f_mkdir(DATA); + f_mkdir(PREFIX); f_mkdir(LIBEXECDIR); f_mkdir(LIBDIR); f_mkdir(PATH_EXEFS); -- 2.39.5