From 5025ee49633a1862dea00c8ef5886904d8c481d3 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 11 Jun 2018 14:38:32 +0200 Subject: [PATCH] Fix icudt version. We have move to icu version 58 a while ago. --- src/common/stringTools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/stringTools.cpp b/src/common/stringTools.cpp index a1a76ca42..d702ed2b3 100644 --- a/src/common/stringTools.cpp +++ b/src/common/stringTools.cpp @@ -33,7 +33,7 @@ void kiwix::loadICUExternalTables() std::string executablePath = getExecutablePath(); std::string executableDirectory = removeLastPathElement(executablePath); std::string datPath - = computeAbsolutePath(executableDirectory, "icudt49l.dat"); + = computeAbsolutePath(executableDirectory, "icudt58l.dat"); try { u_setDataDirectory(datPath.c_str()); } catch (exception& e) {