summaryrefslogtreecommitdiffstats
path: root/meta/recipes-qt/qt-demo/qt-demo-init/qtdemo-init
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-qt/qt-demo/qt-demo-init/qtdemo-init')
-rw-r--r--meta/recipes-qt/qt-demo/qt-demo-init/qtdemo-init8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-qt/qt-demo/qt-demo-init/qtdemo-init b/meta/recipes-qt/qt-demo/qt-demo-init/qtdemo-init
index affb9589ea..0748fcd94c 100644
--- a/meta/recipes-qt/qt-demo/qt-demo-init/qtdemo-init
+++ b/meta/recipes-qt/qt-demo/qt-demo-init/qtdemo-init
@@ -14,11 +14,11 @@ case "$1" in
if [ -f /etc/profile.d/tslib.sh ]; then
source /etc/profile.d/tslib.sh
fi
- if [ -e $TSLIB_TSDEVICE ]; then
+ if [ -e "$TSLIB_TSDEVICE" ]; then
if [ ! -f /etc/pointercal ]; then
/usr/bin/ts_calibrate
fi
- if [ $QTDEMO == qtdemo ]; then
+ if [ "$QTDEMO" == qtdemo ]; then
Xorg &
export DISPLAY=:0
$QTDEMO &
@@ -26,7 +26,7 @@ case "$1" in
QWS_MOUSE_PROTO=tslib:$TSLIB_TSDEVICE $QTDEMO &
fi
else
- if [ $QTDEMO == qtdemo ]; then
+ if [ "$QTDEMO" == qtdemo ]; then
Xorg &
export DISPLAY=:0
fi
@@ -35,7 +35,7 @@ case "$1" in
;;
stop)
echo "Stopping qtdemo"
- if [ $QTDEMO == qtdemo ]; then
+ if [ "$QTDEMO" == qtdemo ]; then
killall Xorg
killall qtdemo
else