Skip to content

Commit

Permalink
Fix minor Autoconf coding style
Browse files Browse the repository at this point in the history
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...
  • Loading branch information
petk committed Jul 31, 2018
1 parent 1603536 commit b719aa4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/pdo_odbc/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ext/standard/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit b719aa4

Please sign in to comment.