devtools: fix bash-isms in meson test
The use of "==" is non-standard extension from bash, so use "=" for comparisons instead. Cc: stable@dpdk.org Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org>
This commit is contained in:
parent
2660c6f653
commit
c039a73fc6
@ -46,9 +46,9 @@ build () # <directory> <meson options>
|
||||
fi
|
||||
}
|
||||
|
||||
if [ "$1" == "-vv" ] ; then
|
||||
if [ "$1" = "-vv" ] ; then
|
||||
TEST_MESON_BUILD_VERY_VERBOSE=1
|
||||
elif [ "$1" == "-v" ] ; then
|
||||
elif [ "$1" = "-v" ] ; then
|
||||
TEST_MESON_BUILD_VERBOSE=1
|
||||
fi
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user