Skip to content

Commit

Permalink
autogen.sh: fix a bashism
Browse files Browse the repository at this point in the history
Use [ "$foo" = "bar" ] instead of [ "$foo" == "bar" ].
The latter is a bashism.
  • Loading branch information
jwilk committed Jul 13, 2015
1 parent 228317c commit 9851bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogen.sh
Expand Up @@ -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/*
Expand Down

0 comments on commit 9851bb2

Please sign in to comment.