autogen.sh: fix a bashism

Use [ "$foo" = "bar" ] instead of [ "$foo" == "bar" ].
The latter is a bashism.
This commit is contained in:
Jakub Wilk 2015-07-13 17:20:36 +02:00
parent 228317caa1
commit 9851bb23b1

View File

@ -27,7 +27,7 @@
#
# All the rest is auto-generated.
if [ "$1" == "clean" ]; then
if [ "$1" = "clean" ]; then
echo "Cleaning..."
rm configure aclocal.m4
rm m4/*