From: Pierre Joye Date: Thu, 2 Dec 2010 23:23:14 +0000 (+0000) Subject: - Fix #29085, bad default include_path on Windows X-Git-Tag: php-5.3.4~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63d87a0adbb536fb5da7f749932618e5dbb535b1;p=php - Fix #29085, bad default include_path on Windows --- diff --git a/win32/build/config.w32 b/win32/build/config.w32 index f2063b2e99..4b29cd925b 100644 --- a/win32/build/config.w32 +++ b/win32/build/config.w32 @@ -104,7 +104,7 @@ ARG_ENABLE('zts', 'Thread safety', 'yes'); // Configures the hard-coded installation dir ARG_ENABLE('prefix', 'where PHP will be installed', ''); if (PHP_PREFIX == '') { - PHP_PREFIX = "C:\\php" + PHP_VERSION; + PHP_PREFIX = "C:\\php"; if (PHP_DEBUG == "yes") PHP_PREFIX += "\\debug"; }