mirror of
https://github.com/php/php-src.git
synced 2024-12-04 15:23:44 +08:00
Fix bug GH-15514 (Configure error: genif.sh: syntax error)
Autoconf assigns the current suitable shell to SHELL variable. This notably fixes cases on Solaris 10 when using C shell or KornShell where genif.sh: syntax error at line 35 occurs due to using the `sh` command.
This commit is contained in:
parent
63841ba7cf
commit
48a18e5be7
1
NEWS
1
NEWS
@ -6,6 +6,7 @@ PHP NEWS
|
|||||||
. Fixed bug GH-15408 (MSan false-positve on zend_max_execution_timer).
|
. Fixed bug GH-15408 (MSan false-positve on zend_max_execution_timer).
|
||||||
(zeriyoshi)
|
(zeriyoshi)
|
||||||
. Fixed bug GH-15515 (Configure error grep illegal option q). (Peter Kokot)
|
. Fixed bug GH-15515 (Configure error grep illegal option q). (Peter Kokot)
|
||||||
|
. Fixed bug GH-15514 (Configure error: genif.sh: syntax error). (Peter Kokot)
|
||||||
|
|
||||||
- MySQLnd:
|
- MySQLnd:
|
||||||
. Fixed bug GH-15432 (Heap corruption when querying a vector). (cmb,
|
. Fixed bug GH-15432 (Heap corruption when querying a vector). (cmb,
|
||||||
|
@ -1792,10 +1792,10 @@ FEO
|
|||||||
dnl Run this only when generating all the files.
|
dnl Run this only when generating all the files.
|
||||||
if test -n "\$REDO_ALL"; then
|
if test -n "\$REDO_ALL"; then
|
||||||
echo "creating main/internal_functions.c"
|
echo "creating main/internal_functions.c"
|
||||||
AWK="$AWK" sh $srcdir/build/genif.sh $srcdir/main/internal_functions.c.in "$EXT_STATIC" > main/internal_functions.c
|
AWK="$AWK" $SHELL $srcdir/build/genif.sh $srcdir/main/internal_functions.c.in "$EXT_STATIC" > main/internal_functions.c
|
||||||
|
|
||||||
echo "creating main/internal_functions_cli.c"
|
echo "creating main/internal_functions_cli.c"
|
||||||
AWK="$AWK" sh $srcdir/build/genif.sh $srcdir/main/internal_functions.c.in "$EXT_CLI_STATIC" > main/internal_functions_cli.c
|
AWK="$AWK" $SHELL $srcdir/build/genif.sh $srcdir/main/internal_functions.c.in "$EXT_CLI_STATIC" > main/internal_functions_cli.c
|
||||||
|
|
||||||
if test "$PHP_SAPI" = "apache2handler"; then
|
if test "$PHP_SAPI" = "apache2handler"; then
|
||||||
if test "$APACHE_VERSION" -ge 2004001; then
|
if test "$APACHE_VERSION" -ge 2004001; then
|
||||||
|
Loading…
Reference in New Issue
Block a user