diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2020-06-25 23:31:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 23:31:10 +0200 |
commit | d805611fcb2842826b04a4bb457ba1f2635cc558 (patch) | |
tree | c5da123d52c06a5300400206242d417be027376e | |
parent | 9742dcc45c241f1091683a52dfa407579fd50304 (diff) | |
parent | f38a8bd7a59ca56950b42e364b652a8ad7681fa9 (diff) |
Merge pull request #931 from lnslbrty/fix/autogen.sh
fixed autoconf version check
-rwxr-xr-x | autogen.sh | 4 |
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 |