From: Ross Burton Date: Mon, 11 Nov 2013 12:21:32 +0000 (+0000) Subject: weston-init: use /run instead of /var/run X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f31258233e08cf2d6a5e5236a1d4b1cb1a796e6d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-graphics/wayland/weston-init/init b/meta/recipes-graphics/wayland/weston-init/init index 284fd0ac3ce..8e662e00a55 100644 --- a/meta/recipes-graphics/wayland/weston-init/init +++ b/meta/recipes-graphics/wayland/weston-init/init @@ -29,7 +29,7 @@ case "$1" in # This is all a nasty hack if test -z "$XDG_RUNTIME_DIR"; then - export XDG_RUNTIME_DIR=/var/run/user/root + export XDG_RUNTIME_DIR=/run/user/root mkdir --parents $XDG_RUNTIME_DIR chmod 0700 $XDG_RUNTIME_DIR fi