From 318b0f681ead08a70f9dd36ec6c801dd9dc46f2e Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Mon, 13 Jul 2015 17:20:36 +0200 Subject: [PATCH] autogen.sh: fix a bashism Use [ "$foo" = "bar" ] instead of [ "$foo" == "bar" ]. The latter is a bashism. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index e222a6cd0a..ac44d35770 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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/*