mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 02:50:46 +00:00
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:
committed by
Martin Jansa
parent
eae941316a
commit
a01fd27380
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user