1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Autotools: Quote PHP_NEW_EXTENSION arguments (#15081)

This removes redundant shell double quotes as PHP_NEW_EXTENSION macro
already wraps the flags argument in quotes.
This commit is contained in:
Peter Kokot
2024-07-24 19:55:19 +02:00
committed by GitHub
parent da69755eca
commit d22abb5fa9

View File

@@ -149,6 +149,10 @@ fi
if test "$PHP_READLINE" != "no" || test "$PHP_LIBEDIT" != "no"; then
dnl Add -Wno-strict-prototypes as depends on user libs
PHP_NEW_EXTENSION(readline, readline.c readline_cli.c, $ext_shared, cli, "-Wno-strict-prototypes")
PHP_NEW_EXTENSION([readline],
[readline.c readline_cli.c],
[$ext_shared],
[cli],
[-Wno-strict-prototypes])
PHP_SUBST([READLINE_SHARED_LIBADD])
fi