]> granicus.if.org Git - php/commitdiff
Fix version test
authorMarcus Boerger <helly@php.net>
Tue, 7 Oct 2003 09:40:39 +0000 (09:40 +0000)
committerMarcus Boerger <helly@php.net>
Tue, 7 Oct 2003 09:40:39 +0000 (09:40 +0000)
configure.in

index ddcf347132f7a575a0d47bee79cbb35014c3003f..39eacd28720eaa9b644b02d1d0aa8a63fb337f61 100644 (file)
@@ -137,7 +137,7 @@ if test "$YACC" != "bison -y"; then
 else
     AC_MSG_CHECKING([bison version])
     set `bison --version| grep 'GNU Bison' | cut -d ' ' -f 4 | sed -e 's/\./ /'|tr -d a-z`
-    if test "${1}" = "1" -a "${2}" != "28" -a "${2}" != "35" -a "${2}" != "75" -a "${2}" != "875"; then
+    if test "${1}" -ne "1" -o "(" "${2}" != "28" -a "${2}" != "35" -a "${2}" != "75" -a "${2}" != "875" ")"; then
       AC_MSG_WARN([You will need bison 1.28, 1.35, 1.75 or 1.875 if you want to regenerate the Zend parser (found ${1}.${2}).])
     fi
     AC_MSG_RESULT(${1}.${2} (ok))