From: Sascha Schumann Date: Sat, 10 Jun 2000 07:48:55 +0000 (+0000) Subject: Fix MYSQL_LIB_CHK ($i is used by the outer loop) X-Git-Tag: php-4.0.1RC~304 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce9a9fb1dcdda3c0cdd300a7430928b2fadf6d34;p=php Fix MYSQL_LIB_CHK ($i is used by the outer loop) --- diff --git a/ext/mysql/config.m4 b/ext/mysql/config.m4 index afed13037b..0e26490289 100644 --- a/ext/mysql/config.m4 +++ b/ext/mysql/config.m4 @@ -7,8 +7,8 @@ sinclude(libmysql/mysql.m4) AC_DEFUN(MYSQL_LIB_CHK,[ str="$MYSQL_DIR/$1/libmysqlclient.*" - for i in `echo $str`; do - if test -r $i; then + for j in `echo $str`; do + if test -r $j; then MYSQL_LIB_DIR="$MYSQL_DIR/$1" break 2 fi