git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2660c6f
)
devtools: fix bash-isms in meson test
author
Bruce Richardson
<bruce.richardson@intel.com>
Wed, 10 Apr 2019 20:52:24 +0000
(21:52 +0100)
committer
Thomas Monjalon
<thomas@monjalon.net>
Wed, 17 Apr 2019 15:16:47 +0000
(17:16 +0200)
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>
devtools/test-meson-builds.sh
patch
|
blob
|
history
diff --git
a/devtools/test-meson-builds.sh
b/devtools/test-meson-builds.sh
index
c7bde2f
..
0ea79f4
100755
(executable)
--- 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