From: Bruce Richardson Date: Wed, 10 Apr 2019 20:52:24 +0000 (+0100) Subject: devtools: fix bash-isms in meson test X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=c039a73fc62040d5bc5811a8dae367daf7198646 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 Acked-by: Luca Boccassi --- diff --git a/devtools/test-meson-builds.sh b/devtools/test-meson-builds.sh index c7bde2fb79..0ea79f461f 100755 --- a/devtools/test-meson-builds.sh +++ b/devtools/test-meson-builds.sh @@ -46,9 +46,9 @@ build () # 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