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
14 if [ -f /etc/profile.d/tslib.sh ]; then 14 if [ -f /etc/profile.d/tslib.sh ]; then
15 source /etc/profile.d/tslib.sh 15 source /etc/profile.d/tslib.sh
16 fi 16 fi
17 if [ -e $TSLIB_TSDEVICE ]; then 17 if [ -e "$TSLIB_TSDEVICE" ]; then
18 if [ ! -f /etc/pointercal ]; then 18 if [ ! -f /etc/pointercal ]; then
19 /usr/bin/ts_calibrate 19 /usr/bin/ts_calibrate
20 fi 20 fi
21 if [ $QTDEMO == qtdemo ]; then 21 if [ "$QTDEMO" == qtdemo ]; then
22 Xorg & 22 Xorg &
23 export DISPLAY=:0 23 export DISPLAY=:0
24 $QTDEMO & 24 $QTDEMO &
@@ -26,7 +26,7 @@ case "$1" in
26 QWS_MOUSE_PROTO=tslib:$TSLIB_TSDEVICE $QTDEMO & 26 QWS_MOUSE_PROTO=tslib:$TSLIB_TSDEVICE $QTDEMO &
27 fi 27 fi
28 else 28 else
29 if [ $QTDEMO == qtdemo ]; then 29 if [ "$QTDEMO" == qtdemo ]; then
30 Xorg & 30 Xorg &
31 export DISPLAY=:0 31 export DISPLAY=:0
32 fi 32 fi
@@ -35,7 +35,7 @@ case "$1" in
35 ;; 35 ;;
36 stop) 36 stop)
37 echo "Stopping qtdemo" 37 echo "Stopping qtdemo"
38 if [ $QTDEMO == qtdemo ]; then 38 if [ "$QTDEMO" == qtdemo ]; then
39 killall Xorg 39 killall Xorg
40 killall qtdemo 40 killall qtdemo
41 else 41 else