summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-04-02 16:41:26 +0100
committerSadie Powell <sadie@witchery.services>2024-04-02 16:45:49 +0100
commit87a8af0ad71a11c248ba94c9ba20668dcb0fe831 (patch)
tree32359dfc4094c20e24b79c116d659c0167e0ccc8 /src
parent4691dfa3f0b91e8cca1ebc8905c5f0bc08688b6b (diff)
Use the paths from the build system instead of hardcoding them.
Diffstat (limited to 'src')
-rw-r--r--src/init.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index df53ee908..7c760d1af 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -30,7 +30,11 @@
#endif
#include <thread>
-Anope::string Anope::ConfigDir = "conf", Anope::DataDir = "data", Anope::ModuleDir = "lib", Anope::LocaleDir = "locale", Anope::LogDir = "logs";
+Anope::string Anope::ConfigDir = DEFAULT_CONF_DIR;
+Anope::string Anope::DataDir = DEFAULT_DATA_DIR;
+Anope::string Anope::LocaleDir = DEFAULT_LOCALE_DIR;
+Anope::string Anope::LogDir = DEFAULT_LOG_DIR;
+Anope::string Anope::ModuleDir = DEFAULT_MODULE_DIR;
/* Vector of pairs of command line arguments and their params */
static std::vector<std::pair<Anope::string, Anope::string> > CommandLineArguments;