waf-samba.bbclass: remove bashism

use '=' instead of '==' so this works with dash as /bin/sh

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Jackie Huang
2015-09-18 17:13:19 +08:00
committed by Martin Jansa
parent eae941316a
commit a01fd27380
+1 -1
View File
@@ -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