From: WonYoung Choi Date: Mon, 22 Jun 2015 01:48:53 +0000 (+0900) Subject: Fix build error in step_generate_xml.cc X-Git-Tag: accepted/tizen/mobile/20150622.041058^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F12%2F42012%2F1;p=platform%2Fcore%2Fappfw%2Fapp-installers.git Fix build error in step_generate_xml.cc Change-Id: Ic8de16f871b98af400e32e7bb24fcd77498ce39b --- diff --git a/src/common/step/step_generate_xml.cc b/src/common/step/step_generate_xml.cc index c3ee531..6831da3 100755 --- a/src/common/step/step_generate_xml.cc +++ b/src/common/step/step_generate_xml.cc @@ -176,7 +176,7 @@ Step::Status StepGenerateXml::process() { bs::error_code error; if (!fs::exists(xml_path.parent_path(), error)) { - if (!utils::CreateDir(xml_path.parent_path())) { + if (!common_installer::CreateDir(xml_path.parent_path())) { LOG(ERROR) << "Directory for manifest xml is missing and cannot be created"; return Status::ERROR;