diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2020-01-21 11:54:33 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2020-01-21 11:54:33 +0100 |
commit | 5a6f3de8ac419ffee41a3ea19176100b31b3adfb (patch) | |
tree | 124a8b9cb28d3037d4985af7affa4efb75a339c0 /win32/build/phpize.js.in | |
parent | a9aee3db09fd34fd41ce6725ee5309181aed7302 (diff) | |
parent | b0f8d38f4acd790100ece0bc6e33818d13fd44a2 (diff) | |
download | php-git-5a6f3de8ac419ffee41a3ea19176100b31b3adfb.tar.gz |
Merge branch 'PHP-7.4'
* PHP-7.4:
Fix #79146: cscript can fail to run on some systems
Diffstat (limited to 'win32/build/phpize.js.in')
-rw-r--r-- | win32/build/phpize.js.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/build/phpize.js.in b/win32/build/phpize.js.in index 11a653f05e..d12820403e 100644 --- a/win32/build/phpize.js.in +++ b/win32/build/phpize.js.in @@ -258,6 +258,6 @@ C.WriteBlankLines(1); C.Write(file_get_contents(PHP_DIR + "\\script\\configure.tail")); B.WriteLine("@echo off"); -B.WriteLine("cscript /nologo configure.js %*"); +B.WriteLine("cscript /nologo /e:jscript configure.js %*"); FSO.CopyFile(PHP_DIR + "\\script\\run-tests.php", "run-tests.php", true); |