X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fcommon%2Fstep%2Fpkgmgr%2Fstep_recover_parser_plugins.cc;h=4513ae99aafdcee91c59c1fe0f76080eb8d56fe4;hb=bc819e6bce3bc061383b27e476882aa3babb48c6;hp=4d221cc7f49cdca158f5e8c0da12266522bb4b1a;hpb=b04cf9b96466d8ff66692a8e5d84a440bc9366f3;p=platform%2Fcore%2Fappfw%2Fapp-installers.git diff --git a/src/common/step/pkgmgr/step_recover_parser_plugins.cc b/src/common/step/pkgmgr/step_recover_parser_plugins.cc index 4d221cc..4513ae9 100644 --- a/src/common/step/pkgmgr/step_recover_parser_plugins.cc +++ b/src/common/step/pkgmgr/step_recover_parser_plugins.cc @@ -6,14 +6,14 @@ #include -#include +#include #include "common/plugins/plugin.h" #include "common/step/pkgmgr/step_run_parser_plugins.h" #include "common/utils/paths.h" -namespace bf = boost::filesystem; namespace ci = common_installer; +namespace fs = std::filesystem; namespace { @@ -73,8 +73,8 @@ Step::Status StepRecoverParserPlugin::RecoverPlugin() { bool StepRecoverParserPlugin::SetXmlPath() { if (context_->pkgid.get().empty()) return false; - bf::path xml_path = - bf::path(getUserManifestPath(context_->uid.get(), + fs::path xml_path = + fs::path(getUserManifestPath(context_->uid.get(), context_->is_readonly_package.get())) / context_->pkgid.get(); xml_path += ".xml";