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 19a122d commit 318b0f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
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 318b0f6

Please sign in to comment.