Merge pull request #1181 from vsedach/master
Replace Bash-specific [[]] with POSIX sh [] in autogen.sh
This commit is contained in:
@ -7,7 +7,7 @@ test -f mu/mu.cc || {
|
|||||||
}
|
}
|
||||||
|
|
||||||
command -V autoreconf > /dev/null
|
command -V autoreconf > /dev/null
|
||||||
if [[ $? != 0 ]]; then
|
if [ $? != 0 ]; then
|
||||||
echo "*** No autoreconf found, please install it ***"
|
echo "*** No autoreconf found, please install it ***"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user