commit | fb08e4bdaa9d5c840c0d0d6b1200ce9fab9a93bf | [log] [tgz] |
---|---|---|
author | Kristian Høgsberg <krh@bitplanet.net> | Mon Oct 21 15:14:44 2013 -0700 |
committer | Kristian Høgsberg <krh@bitplanet.net> | Mon Oct 21 15:14:44 2013 -0700 |
tree | 89739c3154d99ea507125e71694dadb715dfcdd5 | |
parent | 53ec5604231b3eefe009111682b0c12ea5254d4a [diff] [blame] |
weston-launch: Use /bin/sh for launching weston https://bugs.freedesktop.org/show_bug.cgi?id=68739
diff --git a/src/weston-launch.c b/src/weston-launch.c index e5301c7..8118d03 100644 --- a/src/weston-launch.c +++ b/src/weston-launch.c
@@ -596,7 +596,7 @@ sigaddset(&mask, SIGINT); sigprocmask(SIG_UNBLOCK, &mask, NULL); - child_argv[0] = wl->pw->pw_shell; + child_argv[0] = "/bin/sh"; child_argv[1] = "-l"; child_argv[2] = "-c"; child_argv[3] = BINDIR "/weston \"$@\"";