From a01fd273804b31b22f5b9686706cefa62720081e Mon Sep 17 00:00:00 2001 From: Jackie Huang Date: Fri, 18 Sep 2015 17:13:19 +0800 Subject: waf-samba.bbclass: remove bashism use '=' instead of '==' so this works with dash as /bin/sh Signed-off-by: Jackie Huang Signed-off-by: Martin Jansa --- meta-oe/classes/waf-samba.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/classes/waf-samba.bbclass b/meta-oe/classes/waf-samba.bbclass index 23c55567d..241aa6939 100644 --- a/meta-oe/classes/waf-samba.bbclass +++ b/meta-oe/classes/waf-samba.bbclass @@ -22,7 +22,7 @@ CONFIGUREOPTS = " --prefix=${prefix} \ do_configure() { qemu_binary="${@qemu_target_binary(d)}" - if [ ${qemu_binary} == "qemu-allarch" ]; then + if [ "${qemu_binary}" = "qemu-allarch" ]; then qemu_binary="qemuwrapper" fi -- cgit v1.2.3-54-g00ecf