diff options
author | y-uti <y.uchiyama.1015@gmail.com> | 2016-03-26 18:56:25 +0900 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-07-25 10:01:34 +0200 |
commit | 3f842655dbb6af84437175243fa6bef586302649 (patch) | |
tree | 1a20894505e3c21fa163b882c7f9042f24578911 /win32 | |
parent | 72ac8cf5ad50758a9abccb4d27b147095392ecb0 (diff) | |
download | php-git-3f842655dbb6af84437175243fa6bef586302649.tar.gz |
Make phpize use PHP_PREFIX as the default location (windows)
The default path to where an extension is installed should be
PHP_PREFIX/ext on windows.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/build/config.w32.phpize.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/build/config.w32.phpize.in b/win32/build/config.w32.phpize.in index 5b211f804e..d5cec2c178 100644 --- a/win32/build/config.w32.phpize.in +++ b/win32/build/config.w32.phpize.in @@ -150,7 +150,7 @@ if (VCVERS >= 1400) { } } -ARG_WITH('prefix', 'PHP installation prefix', ''); +ARG_WITH('prefix', 'PHP installation prefix', PHP_PREFIX); ARG_WITH('mp', 'Tell VC9+ use up to [n,auto,disable] processes for compilation', 'auto'); if (VCVERS >= 1500 && PHP_MP != 'disable') { // no from disable-all |