1
0
Fork 0
This commit is contained in:
Willi Goesgens 2015-01-20 17:29:08 +01:00
parent b66796e69f
commit f8ecab9216
1 changed files with 3 additions and 2 deletions

View File

@ -2182,11 +2182,12 @@ char* TRI_LocateConfigDirectory () {
v = TRI_LocateInstallDirectory(); v = TRI_LocateInstallDirectory();
if (v != NULL) { if (v != NULL) {
#if defined(_SYSCONFDIR_) if (v != NULL) {
#ifdef _SYSCONFDIR_
TRI_AppendString(&v, _SYSCONFDIR_); TRI_AppendString(&v, _SYSCONFDIR_);
#else #else
TRI_AppendString(&v, "etc\\arangodb\\"); TRI_AppendString(&v, "etc\\arangodb\\");
#fi #endif
} }
return v; return v;