aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-06-25 20:02:23 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-06-25 20:02:23 +0200
commitf38a8bd7a59ca56950b42e364b652a8ad7681fa9 (patch)
treeee61c1ed7f205ed5799d6200996ce65fac1f2447 /autogen.sh
parent0b53bc2aab97aefbcfd1f7c6f3c1cf96d8ab823f (diff)
fixed autoconf version check
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index acf807f9f..e374c9731 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -20,8 +20,8 @@ if test -z $AUTOCONF; then
exit
else
V=`autoconf --version | head -1 | cut -d ' ' -f 4`
- if [ $V="2.6.3" ]; then
- FUZZY="dnl> "
+ if [ "$V" = '2.6.3' ]; then
+ FUZZY="dnl> "
fi
fi