From: foobar Date: Tue, 29 Nov 2005 21:31:35 +0000 (+0000) Subject: MFB51: Always use $SED instead of sed X-Git-Tag: RELEASE_2_0_2~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fc816c5e769f89487fc01cc46c94ecc7fd44cef9;p=php MFB51: Always use $SED instead of sed --- diff --git a/ext/mysqli/config.m4 b/ext/mysqli/config.m4 index e0c3d5ead3..cfca74b476 100644 --- a/ext/mysqli/config.m4 +++ b/ext/mysqli/config.m4 @@ -30,8 +30,8 @@ dnl fi fi if test -x "$MYSQL_CONFIG" && $MYSQL_CONFIG $MYSQL_LIB_CFG > /dev/null 2>&1; then - MYSQLI_INCLINE=`$MYSQL_CONFIG --cflags | sed -e "s/'//g"` - MYSQLI_LIBLINE=`$MYSQL_CONFIG $MYSQL_LIB_CFG | sed -e "s/'//g"` + MYSQLI_INCLINE=`$MYSQL_CONFIG --cflags | $SED -e "s/'//g"` + MYSQLI_LIBLINE=`$MYSQL_CONFIG $MYSQL_LIB_CFG | $SED -e "s/'//g"` else AC_MSG_RESULT([mysql_config not found]) AC_MSG_ERROR([Please reinstall the mysql distribution])