diff options
author | Breno Leitao <leitao@debian.org> | 2019-05-09 11:03:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-12 09:04:26 +0100 |
commit | f16d502f4631989d2994441662984fc1d6ad220e (patch) | |
tree | 5ce4c7db427ae864c4293a73200ed1a99409ae84 /meta/recipes-graphics/wayland/weston-init/weston-start | |
parent | b5ba1dcf2d993b8bec6cf2c22ec7d4ea1a497cb5 (diff) | |
download | poky-f16d502f4631989d2994441662984fc1d6ad220e.tar.gz |
weston-init: Fix tab indentation
This patch simply fixes space and tab mixes. It converts space to tabs. This is
being done since I am going to change the code in the next commit and I do not
want to change more lines than it is required, thus, I am creating a commit
just to fix indentation, so I can create a cleaner patch later.
(From OE-Core rev: 82e97de432bfd553fb84b62666e2c860be2ecfeb)
Signed-off-by: Breno Leitao <leitao@debian.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/wayland/weston-init/weston-start')
-rwxr-xr-x | meta/recipes-graphics/wayland/weston-init/weston-start | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/recipes-graphics/wayland/weston-init/weston-start b/meta/recipes-graphics/wayland/weston-init/weston-start index e72fbaaac4..d631c2f1e9 100755 --- a/meta/recipes-graphics/wayland/weston-init/weston-start +++ b/meta/recipes-graphics/wayland/weston-init/weston-start | |||
@@ -5,8 +5,8 @@ | |||
5 | export PATH="/sbin:/usr/sbin:/bin:/usr/bin" | 5 | export PATH="/sbin:/usr/sbin:/bin:/usr/bin" |
6 | 6 | ||
7 | usage() { | 7 | usage() { |
8 | cat <<EOF | 8 | cat <<EOF |
9 | $0 [<openvt arguments>] [-- <weston options>] | 9 | $0 [<openvt arguments>] [-- <weston options>] |
10 | EOF | 10 | EOF |
11 | } | 11 | } |
12 | 12 | ||
@@ -59,11 +59,11 @@ if [ -d "$modules_dir" ]; then | |||
59 | fi | 59 | fi |
60 | 60 | ||
61 | if test -z "$XDG_RUNTIME_DIR"; then | 61 | if test -z "$XDG_RUNTIME_DIR"; then |
62 | export XDG_RUNTIME_DIR=/run/user/`id -u` | 62 | export XDG_RUNTIME_DIR=/run/user/`id -u` |
63 | if ! test -d "$XDG_RUNTIME_DIR"; then | 63 | if ! test -d "$XDG_RUNTIME_DIR"; then |
64 | mkdir --parents $XDG_RUNTIME_DIR | 64 | mkdir --parents $XDG_RUNTIME_DIR |
65 | chmod 0700 $XDG_RUNTIME_DIR | 65 | chmod 0700 $XDG_RUNTIME_DIR |
66 | fi | 66 | fi |
67 | fi | 67 | fi |
68 | 68 | ||
69 | exec openvt $openvt_args -- $launcher $weston_args --log=@LOCALSTATEDIR@/log/weston.log | 69 | exec openvt $openvt_args -- $launcher $weston_args --log=@LOCALSTATEDIR@/log/weston.log |