diff options
author | Ross Burton <ross.burton@intel.com> | 2013-11-11 12:21:32 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-12 16:00:27 +0000 |
commit | f31258233e08cf2d6a5e5236a1d4b1cb1a796e6d (patch) | |
tree | 955c4e81ba67b115df43660285bac489075e9858 /meta | |
parent | 7fd89192c5687ffe177e40cfb6be26f54a8f83bd (diff) | |
download | poky-f31258233e08cf2d6a5e5236a1d4b1cb1a796e6d.tar.gz |
weston-init: use /run instead of /var/run
/var/run is just a symlink to /run now, so use /run directly.
(From OE-Core rev: b6201d2a27639f9d384ba1137096a05f6795797a)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/wayland/weston-init/init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/weston-init/init b/meta/recipes-graphics/wayland/weston-init/init index 284fd0ac3c..8e662e00a5 100644 --- a/meta/recipes-graphics/wayland/weston-init/init +++ b/meta/recipes-graphics/wayland/weston-init/init | |||
@@ -29,7 +29,7 @@ case "$1" in | |||
29 | 29 | ||
30 | # This is all a nasty hack | 30 | # This is all a nasty hack |
31 | if test -z "$XDG_RUNTIME_DIR"; then | 31 | if test -z "$XDG_RUNTIME_DIR"; then |
32 | export XDG_RUNTIME_DIR=/var/run/user/root | 32 | export XDG_RUNTIME_DIR=/run/user/root |
33 | mkdir --parents $XDG_RUNTIME_DIR | 33 | mkdir --parents $XDG_RUNTIME_DIR |
34 | chmod 0700 $XDG_RUNTIME_DIR | 34 | chmod 0700 $XDG_RUNTIME_DIR |
35 | fi | 35 | fi |