[oe-commits] Andreas Oberritter : navit: fix sh equality operator

git version control git at git.openembedded.org
Sun Nov 14 23:43:36 UTC 2010


Module: openembedded.git
Branch: master
Commit: e8816aee3da2a2d49186eba4d121e83212d1e4b4
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=e8816aee3da2a2d49186eba4d121e83212d1e4b4

Author: Andreas Oberritter <obi at opendreambox.org>
Date:   Tue Oct 26 15:43:08 2010 +0000

navit: fix sh equality operator

Signed-off-by: Andreas Oberritter <obi at opendreambox.org>
Acked-by: Michael Smith <msmith at cbnco.com>

---

 recipes/navit/files/shr/navit.launcher |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/navit/files/shr/navit.launcher b/recipes/navit/files/shr/navit.launcher
index 68baaeb..f3e1b0a 100644
--- a/recipes/navit/files/shr/navit.launcher
+++ b/recipes/navit/files/shr/navit.launcher
@@ -24,7 +24,7 @@
 pgrep '^navit$'
 not_running=$?
 
-if [ $not_running == 0 ]; then
+if [ $not_running = 0 ]; then
         echo "navit already running !!"
 else
         echo "ok starting navit ..."





More information about the Openembedded-commits mailing list