1
0
Fork 0

fixed path (dopple back-slash)

This commit is contained in:
Frank Celler 2016-03-18 18:38:05 +01:00
parent a7361dca7f
commit 531b7c5590
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ void TRI_FixIcuDataEnv() {
std::string p = TRI_LocateInstallDirectory();
if (!p.empty()) {
std::string e = "ICU_DATA=" + p + "\\share\\arangodb\\";
std::string e = "ICU_DATA=" + p + "share\\arangodb\\";
e = StringUtils::replace(e, "\\", "\\\\");
putenv(e.c_str());
} else {