mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
In the buildconf and configure batch files, Windows' cscript utility was being run without the /e:jscript flag. This works on systems that have not had the default .js file association changed, but if .js has been re-associated to (say) an IDE, the batch files fail with the error message: Input Error: There is no script engine for file extension ".js".
3 lines
53 B
Batchfile
3 lines
53 B
Batchfile
@echo off
|
|
cscript /nologo /e:jscript configure.js %*
|