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.4.0alpha1~191^2~568 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d687186b584fe0071a0f68897c94b88bb7392dcf;p=php - Fix #29085, bad default include_path on Windows --- diff --git a/win32/build/config.w32 b/win32/build/config.w32 index 0c78210c57..774947b14c 100644 --- a/win32/build/config.w32 +++ b/win32/build/config.w32 @@ -109,7 +109,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"; }