aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-10-26 15:41:54 +0000
committerMichael Smith <msmith@cbnco.com>2010-11-14 18:36:51 -0500
commit6e84e6643c4c12ae9fa4535641324557d133f273 (patch)
treebc773e5b4c2cea73ed3016a727f5e0ed34e4a53b /contrib
parent402a6a69c3ba956c0e5db53c09047598ac97b723 (diff)
downloadopenembedded-6e84e6643c4c12ae9fa4535641324557d133f273.tar.gz
contrib/qemu: fix sh equality operator
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Acked-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/qemu/run-qemu.sh2
1 files changed, 1 insertions, 1 deletions
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=""