diff options
author | Sascha Schumann <sas@php.net> | 2000-06-10 07:48:55 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-06-10 07:48:55 +0000 |
commit | ce9a9fb1dcdda3c0cdd300a7430928b2fadf6d34 (patch) | |
tree | 4eed932dda49ad68fb0fde7ee16ce90fad27bb3c | |
parent | 9097a781876d9d74ea9bf8dbef6ddbcfa6c79111 (diff) | |
download | php-git-ce9a9fb1dcdda3c0cdd300a7430928b2fadf6d34.tar.gz |
Fix MYSQL_LIB_CHK ($i is used by the outer loop)
-rw-r--r-- | ext/mysql/config.m4 | 4 |
1 files 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 |