summaryrefslogtreecommitdiff
path: root/devtools/test-meson-builds.sh
diff options
context:
space:
mode:
authorBruce Richardson <bruce.richardson@intel.com>2019-04-10 21:52:24 +0100
committerThomas Monjalon <thomas@monjalon.net>2019-04-17 17:16:47 +0200
commitc039a73fc62040d5bc5811a8dae367daf7198646 (patch)
tree3086b14c13880fbef75b6204d68adc42599eeef4 /devtools/test-meson-builds.sh
parent2660c6f653c11fa37f3385b9f5777f1eff6489c8 (diff)
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>
Diffstat (limited to 'devtools/test-meson-builds.sh')
-rwxr-xr-xdevtools/test-meson-builds.sh4
1 files changed, 2 insertions, 2 deletions
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 () # <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