From 9a4cd6c2b1debb5e2174e485d4476b1db3d18132 Mon Sep 17 00:00:00 2001 From: Lukasz Gromanowski Date: Mon, 27 Feb 2012 23:56:58 +0100 Subject: [PATCH] Fixes #200 - Paths with quotes for data-local option. Signed-off-by: Lukasz Gromanowski --- components/files/configurationmanager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/components/files/configurationmanager.cpp b/components/files/configurationmanager.cpp index 887a054ad..ef45b6543 100644 --- a/components/files/configurationmanager.cpp +++ b/components/files/configurationmanager.cpp @@ -75,6 +75,7 @@ void ConfigurationManager::processPaths(Files::PathContainer& dataDirs) { path = it->string(); boost::erase_all(path, "\""); + *it = boost::filesystem::path(path); // Check if path contains a token if (!path.empty() && *path.begin() == '?')