From 2ae829a50a0a6d618608387914c8c30173343e12 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Fri, 27 Aug 2021 21:09:26 +0300 Subject: [PATCH] startkde: correct PATH environment variable check Signed-off-by: Ivailo Monev --- startkde.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startkde.cmake b/startkde.cmake index b6c2b7e0..6d9bd486 100644 --- a/startkde.cmake +++ b/startkde.cmake @@ -14,7 +14,7 @@ fi trap 'echo GOT SIGHUP' HUP # in case we have been started with full pathname spec without being in PATH -if [ -n "$PATH " ]; then +if test -n "$PATH" ; then qdbus=$(basename @QT_QDBUS_EXECUTABLE@) else qdbus=@QT_QDBUS_EXECUTABLE@