File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 7
7
not handled properly). (Nikita)
8
8
. Fixed bug #79791 (Assertion failure when unsetting variable during binary
9
9
op). (Nikita)
10
+ . Fixed bug #79841 (Syntax error in configure / unescaped "[]" in php.m4).
11
+ (Nikita)
10
12
11
13
09 Jul 2020, PHP 8.0.0alpha2
12
14
Original file line number Diff line number Diff line change @@ -1784,7 +1784,9 @@ AC_DEFUN([PHP_PROG_BISON], [
1784
1784
AC_MSG_CHECKING ( [ for bison version] )
1785
1785
1786
1786
php_bison_version=$($YACC --version 2> /dev/null | grep 'GNU Bison' | cut -d ' ' -f 4 | tr -d a-z)
1787
- [ -z "$php_bison_version" ] && php_bison_version=0.0.0
1787
+ if test -z "$php_bison_version"; then
1788
+ php_bison_version=0.0.0
1789
+ fi
1788
1790
ac_IFS=$IFS; IFS="."
1789
1791
set $php_bison_version
1790
1792
IFS=$ac_IFS
@@ -1849,7 +1851,9 @@ AC_DEFUN([PHP_PROG_RE2C],[
1849
1851
AC_MSG_CHECKING ( [ for re2c version] )
1850
1852
1851
1853
php_re2c_version=$($RE2C --version | cut -d ' ' -f 2 2>/dev/null)
1852
- [ -z "$php_re2c_version" ] && php_re2c_version=0.0.0
1854
+ if test -z "$php_re2c_version"; then
1855
+ php_re2c_version=0.0.0
1856
+ fi
1853
1857
ac_IFS=$IFS; IFS="."
1854
1858
set $php_re2c_version
1855
1859
IFS=$ac_IFS
You can’t perform that action at this time.
0 commit comments