diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-07-31 03:09:44 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2018-07-31 03:09:44 +0200 |
commit | b719aa41f4c2ecb66fed4f829ceb30854553e113 (patch) | |
tree | ba3586f15a8d4641dbc6fe6ebd70b9a7855b2d02 | |
parent | 160353688b087aef5a8cba8ba483c4c6f9ee0058 (diff) | |
download | php-git-b719aa41f4c2ecb66fed4f829ceb30854553e113.tar.gz |
Fix minor Autoconf coding style
This fixes two minor Autoconf coding styles. Double quotes in arguments
don't need to be escaped. This removes warning given by autoreconf:
- warning: back quotes and double quotes must not be escaped in...
-rwxr-xr-x | ext/pdo_odbc/config.m4 | 2 | ||||
-rw-r--r-- | ext/standard/config.m4 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_odbc/config.m4 b/ext/pdo_odbc/config.m4 index 785e302da9..73b7e1cf93 100755 --- a/ext/pdo_odbc/config.m4 +++ b/ext/pdo_odbc/config.m4 @@ -11,7 +11,7 @@ define([PDO_ODBC_HELP_TEXT],[[ --with-pdo-odbc=unixODBC will check for unixODBC under /usr/local. You may attempt - to use an otherwise unsupported driver using the \"generic\" + to use an otherwise unsupported driver using the 'generic' flavour. The syntax for generic ODBC support is: --with-pdo-odbc=generic,dir,libname,ldflags,cflags diff --git a/ext/standard/config.m4 b/ext/standard/config.m4 index 8e8923f237..6c508e30df 100644 --- a/ext/standard/config.m4 +++ b/ext/standard/config.m4 @@ -409,7 +409,7 @@ dnl Check for argon2 dnl PHP_ARG_WITH(password-argon2, for Argon2 support, [ --with-password-argon2[=DIR] - Include Argon2 support in password_*. DIR is the Argon2 shared library path]]) + Include Argon2 support in password_*. DIR is the Argon2 shared library path]) if test "$PHP_PASSWORD_ARGON2" != "no"; then AC_MSG_CHECKING([for Argon2 library]) |