From ce9a9fb1dcdda3c0cdd300a7430928b2fadf6d34 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Sat, 10 Jun 2000 07:48:55 +0000 Subject: [PATCH] Fix MYSQL_LIB_CHK ($i is used by the outer loop) --- ext/mysql/config.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.50.1