diff options
author | Armin Le Grand <Armin.Le.Grand@cib.de> | 2016-01-22 16:57:17 +0100 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2016-01-23 00:11:47 +0000 |
commit | 7d69efd06dd1a1fee28c117e5ab79e557056f82c (patch) | |
tree | c46a7b1a3706b7d7e4058a2b5c41bfa19318b1ee /external/libxml2 | |
parent | 3fc292f7b32f30b98dad208eb03e086b927d38a2 (diff) |
Win build: Set default script engine for cscript
When Windows build is executed, cscript is used to execute JavaScript files.
This uses cscript from the system to execute *.js files. cscript is not
only capable of executing JavaScript, but also VBScript. Which engine to
run is usually determined by the file extension, except when any installed
program has added a registered association to the used file type. In that
case, the execution of cscript and thus the build fails. This can be prevented
by directly defining the script engine when calling cscript, using the
/e:javascript parameter for *.js targets.
Change-Id: If717b8ae5335acbe4f11c269d3c98a7247a135e6
Reviewed-on: https://gerrit.libreoffice.org/21717
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'external/libxml2')
-rw-r--r-- | external/libxml2/ExternalProject_xml2.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/libxml2/ExternalProject_xml2.mk b/external/libxml2/ExternalProject_xml2.mk index f19cb529add7..dc3ab2f8b2e4 100644 --- a/external/libxml2/ExternalProject_xml2.mk +++ b/external/libxml2/ExternalProject_xml2.mk @@ -32,7 +32,7 @@ $(call gb_ExternalProject_use_external_project,xml2,icu) $(call gb_ExternalProject_get_state_target,xml2,build): $(call gb_ExternalProject_run,build,\ - cscript configure.js \ + cscript /e:javascript configure.js \ iconv=no icu=yes sax1=yes $(if $(MSVC_USE_DEBUG_RUNTIME),run_debug=yes cruntime=/MDd) \ && unset MAKEFLAGS \ && LIB="$(ILIB)" nmake \ |