From 63d87a0adbb536fb5da7f749932618e5dbb535b1 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Thu, 2 Dec 2010 23:23:14 +0000 Subject: [PATCH] - Fix #29085, bad default include_path on Windows --- win32/build/config.w32 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } -- 2.40.0