All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] x11-common: Fix XDG_RUNTIME_DIR typo
@ 2016-06-09 19:27 Tom Hochstein
  2016-06-09 19:27 ` [PATCH 2/3] weston-init: Use bitbake path variable Tom Hochstein
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Tom Hochstein @ 2016-06-09 19:27 UTC (permalink / raw)
  To: openembedded-core

Fix the if-statement that had misspelled XDG_RUNTIME_DIR.
Also fix whitespace.

Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
---
 .../x11-common/x11-common/etc/X11/Xsession.d/13xdgbasedirs.sh       | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xsession.d/13xdgbasedirs.sh b/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xsession.d/13xdgbasedirs.sh
index 91594b9..6bd40b2 100644
--- a/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xsession.d/13xdgbasedirs.sh
+++ b/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xsession.d/13xdgbasedirs.sh
@@ -7,7 +7,7 @@
 # In the ideal case where SystemD is booting and userspace is initiated by a
 # SystemD user session this will have been set already, so don't overwrite it.
 
-if [ -z "$XGD_RUNTIME_DIR" ]; then
-	XDG_RUNTIME_DIR="/tmp"
-        export XDG_RUNTIME_DIR
+if [ -z "$XDG_RUNTIME_DIR" ]; then
+    XDG_RUNTIME_DIR="/tmp"
+    export XDG_RUNTIME_DIR
 fi
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-06-10 13:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-09 19:27 [PATCH 1/3] x11-common: Fix XDG_RUNTIME_DIR typo Tom Hochstein
2016-06-09 19:27 ` [PATCH 2/3] weston-init: Use bitbake path variable Tom Hochstein
2016-06-10 13:48   ` Otavio Salvador
2016-06-09 19:27 ` [PATCH 3/3] weston-init: Don't change XDG_RUNTIME_DIR if it already exists Tom Hochstein
2016-06-10 13:49   ` Otavio Salvador
2016-06-10 13:48 ` [PATCH 1/3] x11-common: Fix XDG_RUNTIME_DIR typo Otavio Salvador

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.