Skip to content

Commit 9851bb2

Browse files
committed
autogen.sh: fix a bashism
Use [ "$foo" = "bar" ] instead of [ "$foo" == "bar" ]. The latter is a bashism.
1 parent 228317c commit 9851bb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autogen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#
2828
# All the rest is auto-generated.
2929

30-
if [ "$1" == "clean" ]; then
30+
if [ "$1" = "clean" ]; then
3131
echo "Cleaning..."
3232
rm configure aclocal.m4
3333
rm m4/*

0 commit comments

Comments
 (0)