From 6e84e6643c4c12ae9fa4535641324557d133f273 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:41:54 +0000 Subject: contrib/qemu: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- contrib/qemu/run-qemu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/qemu') 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="" -- cgit 1.2.3-korg