mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
fix extensions path for nmake install
This commit is contained in:
parent
00788f9cfb
commit
a01fd45d15
3 changed files with 7 additions and 3 deletions
|
@ -2016,7 +2016,8 @@ function generate_makefile()
|
|||
var dll = "php_" + extensions_enabled[i][0] + ".dll";
|
||||
MF.WriteLine(" @copy $(BUILD_DIR)\\" + lib + " $(BUILD_DIR_DEV)\\lib");
|
||||
MF.WriteLine(" @if not exist $(PHP_PREFIX) mkdir $(PHP_PREFIX) >nul");
|
||||
MF.WriteLine(" @copy $(BUILD_DIR)\\" + dll + " $(PHP_PREFIX)");
|
||||
MF.WriteLine(" @if not exist $(PHP_PREFIX)\\ext mkdir $(PHP_PREFIX)\\ext >nul");
|
||||
MF.WriteLine(" @copy $(BUILD_DIR)\\" + dll + " $(PHP_PREFIX)\\ext");
|
||||
}
|
||||
} else {
|
||||
MF.WriteBlankLines(1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue