Skip to content
Snippets Groups Projects
Commit 88818eac authored by rl1987's avatar rl1987
Browse files

Cleanup shellcheck warnings in autogen.sh

parent 81f1b89e
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
if command -v autoreconf; then
opt="-i -f -W all,error"
for i in $@; do
for i in "$@"; do
case "$i" in
-v)
opt="${opt} -v"
......@@ -11,6 +11,7 @@ if [ -x "`which autoreconf 2>/dev/null`" ] ; then
esac
done
# shellcheck disable=SC2086
exec autoreconf $opt
fi
......
o Code simplification and refactoring (shell scripts):
- Cleanup autogen.sh to silence shellcheck warnings. Closes ticket 26069.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment