From: foobar Date: Tue, 8 May 2001 11:08:08 +0000 (+0000) Subject: Fix the build. X-Git-Tag: php-4.0.6RC1~75 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da0162a9de7eaa084c7f4265ac6c01f75eb83c66;p=php Fix the build. # I promise not to commit if I'm tired.. :( --- diff --git a/ext/mysql/config.m4 b/ext/mysql/config.m4 index 0131258aee..f2b6d34fc1 100644 --- a/ext/mysql/config.m4 +++ b/ext/mysql/config.m4 @@ -80,8 +80,8 @@ elif test "$PHP_MYSQL" != "no"; then dnl Check if mysql_config is found. If yes, use the LIBS provided by it.. if test -x "$MYSQL_DIR/bin/mysql_config"; then - MYSQL_LIBS=`$echo $MYSQL_DIR/bin/mysql_config --libs | sed -e "s/'//g"` - MYSQL_INCLUDE=`$echo $MYSQL_DIR/bin/mysql_config --cflags | sed -e "s/'//g"` + MYSQL_LIBS=`$MYSQL_DIR/bin/mysql_config --libs | sed -e "s/'//g"` + MYSQL_INCLUDE=`$MYSQL_DIR/bin/mysql_config --cflags | sed -e "s/'//g"` AC_DEFINE_UNQUOTED(MYSQL_UNIX_ADDR, "`$MYSQL_DIR/bin/mysql_config --socket`", [Default mysql unix socket]) else MYSQL_LIBS="-L$MYSQL_LIB_DIR -lmysqlclient"