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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user