From: foobar Date: Mon, 10 Oct 2005 10:28:21 +0000 (+0000) Subject: Fix copypastetypo X-Git-Tag: RELEASE_0_9_1~167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f8c7e085084e2f71d80f58c92f8a2ffa0bba92a;p=php Fix copypastetypo --- diff --git a/ext/mssql/config.m4 b/ext/mssql/config.m4 index fabe6a8972..aa599d7743 100644 --- a/ext/mssql/config.m4 +++ b/ext/mssql/config.m4 @@ -29,10 +29,10 @@ if test "$PHP_MSSQL" != "no"; then if test -f $PHP_MSSQL/include/tds.h; then FREETDS_INSTALLATION_DIR=$PHP_MSSQL - FREETDS_INCLUDE_DIR=$i/include - elif test -f $i/include/freetds/tds.h; then - FREETDS_INSTALLATION_DIR=$i - FREETDS_INCLUDE_DIR=$i/include/freetds + FREETDS_INCLUDE_DIR=$PHP_MSSQL/include + elif test -f $PHP_MSSQL/include/freetds/tds.h; then + FREETDS_INSTALLATION_DIR=$PHP_MSSQL + FREETDS_INCLUDE_DIR=$PHP_MSSQL/include/freetds else AC_MSG_ERROR(Directory $PHP_MSSQL is not a FreeTDS installation directory) fi