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

Autotools: Quote AC_PATH_PROG arguments in ext/pdo_firebird

[skip ci]
This commit is contained in:
Peter Kokot
2024-08-07 09:19:40 +02:00
parent 5fc68d8bab
commit a49e0a42a1

View File

@@ -10,7 +10,7 @@ if test "$PHP_PDO_FIREBIRD" != "no"; then
AC_MSG_ERROR([PDO is not enabled! Add --enable-pdo to your configure line.])
fi
AC_PATH_PROG(FB_CONFIG, fb_config, no)
AC_PATH_PROG([FB_CONFIG], [fb_config], [no])
if test -x "$FB_CONFIG" && test "$PHP_PDO_FIREBIRD" = "yes"; then
AC_MSG_CHECKING([for libfbconfig])