diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-05-18 18:42:36 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-05-18 18:42:36 +0000 |
commit | caed65f547c6452672c65b7aa12f143587973241 (patch) | |
tree | 962f3c1cf42d9994b784656878001a9d4c769427 | |
parent | 71728cc2b24c4053aa7794a4f27b6403868dbd85 (diff) | |
download | php-git-caed65f547c6452672c65b7aa12f143587973241.tar.gz |
Fixed search path for MySQL.
-rwxr-xr-x | ext/pdo_mysql/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_mysql/config.m4 b/ext/pdo_mysql/config.m4 index 7348e5fd97..7e112c38d1 100755 --- a/ext/pdo_mysql/config.m4 +++ b/ext/pdo_mysql/config.m4 @@ -29,7 +29,7 @@ if test "$PHP_PDO_MYSQL" != "no"; then AC_MSG_RESULT([no]) fi - for i in $PHP_MYSQL /usr/local /usr; do + for i in $PHP_PDO_MYSQL /usr/local /usr; do if test -r $i/include/mysql/mysql.h; then MYSQL_DIR=$i MYSQL_INC_DIR=$i/include/mysql |