Change the binary name.(widget-client => web-widget-runtime) 23/73623/2 accepted/tizen/common/20160617.121223 accepted/tizen/ivi/20160617.082840 accepted/tizen/mobile/20160617.082657 accepted/tizen/tv/20160617.082644 accepted/tizen/wearable/20160617.082720 submit/tizen/20160616.081626
authorJongHeon Choi <j-h.choi@samsung.com>
Thu, 9 Jun 2016 02:30:12 +0000 (11:30 +0900)
committerJongHeon Choi <j-h.choi@samsung.com>
Thu, 16 Jun 2016 07:37:16 +0000 (00:37 -0700)
Change-Id: If3da83217bd4e3739079689697a56b5454b714e0

src/wgt/step/filesystem/step_create_symbolic_link.cc

index bc94fe2..cbdbb7f 100644 (file)
@@ -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);
     }