summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-12-02 23:23:14 +0000
committerPierre Joye <pajoye@php.net>2010-12-02 23:23:14 +0000
commit63d87a0adbb536fb5da7f749932618e5dbb535b1 (patch)
tree624653cf178f16e9ba05a997739e2c94ff5ff562 /win32
parent06c183b7616ea478777a91e791d61a71c2bbc695 (diff)
downloadphp-git-63d87a0adbb536fb5da7f749932618e5dbb535b1.tar.gz
- Fix #29085, bad default include_path on Windows
Diffstat (limited to 'win32')
-rw-r--r--win32/build/config.w322
1 files changed, 1 insertions, 1 deletions
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";
}