From 487c97263f921ed473549f6c6022827e50ff33f1 Mon Sep 17 00:00:00 2001 From: JongHeon Choi Date: Thu, 9 Jun 2016 11:30:12 +0900 Subject: [PATCH] Change the binary name.(widget-client => web-widget-runtime) Change-Id: If3da83217bd4e3739079689697a56b5454b714e0 --- src/wgt/step/filesystem/step_create_symbolic_link.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wgt/step/filesystem/step_create_symbolic_link.cc b/src/wgt/step/filesystem/step_create_symbolic_link.cc index bc94fe2..cbdbb7f 100644 --- a/src/wgt/step/filesystem/step_create_symbolic_link.cc +++ b/src/wgt/step/filesystem/step_create_symbolic_link.cc @@ -23,7 +23,7 @@ namespace bs = boost::system; namespace { const char kWrtServiceBinaryPath[] = "/usr/bin/wrt-service"; -const char kWidgetClientBinaryPath[] = "/usr/bin/widget-client"; +const char kWebWidgetRuntimeBinaryPath[] = "/usr/bin/web-widget-runtime"; } // namespace @@ -48,7 +48,7 @@ bool StepCreateSymbolicLink::CreateSymlinksForApps() { } else if (strcmp(app->component_type, "watchapp") == 0) { bf::create_symlink(bf::path(WRT_LAUNCHER), exec_path, error); } else if (strcmp(app->component_type, "widgetapp") == 0) { - bf::create_symlink(kWidgetClientBinaryPath, exec_path, error); + bf::create_symlink(kWebWidgetRuntimeBinaryPath, exec_path, error); } else { bf::create_symlink(kWrtServiceBinaryPath, exec_path, error); } -- 2.7.4