From 7b7f97b518aed83d905ef132c25d8b0f18c63542 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Mon, 26 Feb 2024 11:47:59 +0100 Subject: [PATCH] Remove duplicate Autoconf check for sed The sed program is always available since it is already discovered in configure.ac and phpize.m4. --- ext/pdo_mysql/config.m4 | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/pdo_mysql/config.m4 b/ext/pdo_mysql/config.m4 index 5d036f44df4..992fb078cf0 100644 --- a/ext/pdo_mysql/config.m4 +++ b/ext/pdo_mysql/config.m4 @@ -46,9 +46,6 @@ if test "$PHP_PDO_MYSQL" != "no"; then AC_MSG_CHECKING([for mysql_config]) if test -n "$PDO_MYSQL_CONFIG"; then AC_MSG_RESULT($PDO_MYSQL_CONFIG) - if test "x$SED" = "x"; then - AC_PATH_PROG(SED, sed) - fi PDO_MYSQL_LIBS=`$PDO_MYSQL_CONFIG --libs | $SED -e "s/'//g"` PDO_MYSQL_INCLUDE=`$PDO_MYSQL_CONFIG --cflags | $SED -e "s/'//g"` elif test -n "$PDO_MYSQL_DIR"; then