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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user