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:
Bruce Richardson 2019-04-10 21:52:24 +01:00 committed by Thomas Monjalon
parent 2660c6f653
commit c039a73fc6

View File

@ -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