From bb5cb7e36516deb9ef44f9ed20d87928d55e27da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20L=C3=B6hr?= Date: Thu, 14 Jan 2016 00:34:16 +0100 Subject: [PATCH] Run system native CScript Build Events are run in an 32 bit environment, therefore both program files environment strings resolve to the x86 program files folder on 64 Bit systems. If Git is 64 bit and installed into the x64 program files it can't be found by the script. --- Source/Core/Common/SCMRevGen.vcxproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/SCMRevGen.vcxproj b/Source/Core/Common/SCMRevGen.vcxproj index 4839c9407b..9b95761597 100644 --- a/Source/Core/Common/SCMRevGen.vcxproj +++ b/Source/Core/Common/SCMRevGen.vcxproj @@ -36,7 +36,7 @@ - cscript /nologo /E:JScript "make_scmrev.h.js" + "%windir%\Sysnative\cscript" /nologo /E:JScript "make_scmrev.h.js"