Replace Bash-specific [[]] with POSIX sh [] in autogen.sh

This commit is contained in:
Vladimir Sedach 2018-01-24 19:30:04 -08:00
parent 97ad4baea7
commit a28faf047f
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ test -f mu/mu.cc || {
}
command -V autoreconf > /dev/null
if [[ $? != 0 ]]; then
if [ $? != 0 ]; then
echo "*** No autoreconf found, please install it ***"
exit 1
fi