1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 06:21:12 +02:00

Fix MYSQL_LIB_CHK ($i is used by the outer loop)

This commit is contained in:
Sascha Schumann
2000-06-10 07:48:55 +00:00
parent 9097a78187
commit ce9a9fb1dc

View File

@@ -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