From 57ff70636c2e5d2d5592bdf0ba055ad51af0c9e8 Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Mon, 22 Jun 2015 10:48:53 +0900 Subject: [PATCH] Fix build error in step_generate_xml.cc Change-Id: Ic8de16f871b98af400e32e7bb24fcd77498ce39b --- src/common/step/step_generate_xml.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4