From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:41:54 +0000 (+0000) Subject: contrib/qemu: fix sh equality operator X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e84e6643c4c12ae9fa4535641324557d133f273;p=openembedded.git contrib/qemu: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- diff --git a/contrib/qemu/run-qemu.sh b/contrib/qemu/run-qemu.sh index 60ae2b3ad8..0c1d7d62e5 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=""