From a49e0a42a11375bbb52ba0202774f0c850939153 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Wed, 7 Aug 2024 09:19:40 +0200 Subject: [PATCH] Autotools: Quote AC_PATH_PROG arguments in ext/pdo_firebird [skip ci] --- ext/pdo_firebird/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pdo_firebird/config.m4 b/ext/pdo_firebird/config.m4 index bb34df0bec2..1f9be45539e 100644 --- a/ext/pdo_firebird/config.m4 +++ b/ext/pdo_firebird/config.m4 @@ -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])