[oe-commits] Andreas Oberritter : contrib/qemu: fix sh equality operator

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


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

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

contrib/qemu: fix sh equality operator

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

---

 contrib/qemu/run-qemu.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/contrib/qemu/run-qemu.sh b/contrib/qemu/run-qemu.sh
index 60ae2b3..0c1d7d6 100755
--- a/contrib/qemu/run-qemu.sh
+++ b/contrib/qemu/run-qemu.sh
@@ -227,7 +227,7 @@ else
 	netopt="-net none"
 fi
 
-if [ "x$3" == "xsingle" ]; then
+if [ "x$3" = "xsingle" ]; then
     init="init=/bin/sh"
 else
     init=""





More information about the Openembedded-commits mailing list