Skip to content

Commit b719aa4

Browse files
committed
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...
1 parent 1603536 commit b719aa4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/pdo_odbc/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ define([PDO_ODBC_HELP_TEXT],[[
1111
--with-pdo-odbc=unixODBC
1212
1313
will check for unixODBC under /usr/local. You may attempt
14-
to use an otherwise unsupported driver using the \"generic\"
14+
to use an otherwise unsupported driver using the 'generic'
1515
flavour. The syntax for generic ODBC support is:
1616
1717
--with-pdo-odbc=generic,dir,libname,ldflags,cflags

ext/standard/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ dnl Check for argon2
409409
dnl
410410
PHP_ARG_WITH(password-argon2, for Argon2 support,
411411
[ --with-password-argon2[=DIR]
412-
Include Argon2 support in password_*. DIR is the Argon2 shared library path]])
412+
Include Argon2 support in password_*. DIR is the Argon2 shared library path])
413413

414414
if test "$PHP_PASSWORD_ARGON2" != "no"; then
415415
AC_MSG_CHECKING([for Argon2 library])

0 commit comments

Comments
 (0)