summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2001-05-08 11:08:08 +0000
committerfoobar <sniper@php.net>2001-05-08 11:08:08 +0000
commitda0162a9de7eaa084c7f4265ac6c01f75eb83c66 (patch)
treecfad9570d8e4e0ecc2f01b11f1a9be0183e89d24
parentf210ba988f8f303e503f1360c608b681cbf13529 (diff)
downloadphp-git-da0162a9de7eaa084c7f4265ac6c01f75eb83c66.tar.gz
Fix the build.
# I promise not to commit if I'm tired.. :(
-rw-r--r--ext/mysql/config.m44
1 files changed, 2 insertions, 2 deletions
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"