summaryrefslogtreecommitdiff
path: root/build.cmd
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2018-01-03 16:45:10 -0800
committerJan Kotas <jkotas@microsoft.com>2018-01-03 16:45:10 -0800
commit8337aa4fa5cdbccddee0ff81bf0b3c8db80956d3 (patch)
tree8054014e151518e687c83bafde1008731f97a4ce /build.cmd
parentec76b8a2df66a5ddfcd5cc373221a6d32a73dbd3 (diff)
downloadcoreclr-8337aa4fa5cdbccddee0ff81bf0b3c8db80956d3.tar.gz
coreclr-8337aa4fa5cdbccddee0ff81bf0b3c8db80956d3.tar.bz2
coreclr-8337aa4fa5cdbccddee0ff81bf0b3c8db80956d3.zip
Updating the build script to work when python is installed to a path containing a space. (#15707)
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd12
1 files changed, 6 insertions, 6 deletions
diff --git a/build.cmd b/build.cmd
index fe389f8ab2..61366f963b 100644
--- a/build.cmd
+++ b/build.cmd
@@ -411,13 +411,13 @@ if /i "%__BuildNative%"=="1" (
echo %__MsgPrefix%Laying out dynamically generated files consumed by the native build system
echo %__MsgPrefix%Laying out dynamically generated Event test files and etmdummy stub functions
- !PYTHON! -B -Wall %__SourceDir%\scripts\genEventing.py --inc %__IntermediatesIncDir% --dummy %__IntermediatesIncDir%\etmdummy.h --man %__SourceDir%\vm\ClrEtwAll.man --nonextern || exit /b 1
+ "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEventing.py --inc %__IntermediatesIncDir% --dummy %__IntermediatesIncDir%\etmdummy.h --man %__SourceDir%\vm\ClrEtwAll.man --nonextern || exit /b 1
echo %__MsgPrefix%Laying out dynamically generated EventPipe Implementation
- !PYTHON! -B -Wall %__SourceDir%\scripts\genEventPipe.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate %__IntermediatesEventingDir%\eventpipe --nonextern || exit /b 1
+ "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEventPipe.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate %__IntermediatesEventingDir%\eventpipe --nonextern || exit /b 1
echo %__MsgPrefix%Laying out ETW event logging interface
- !PYTHON! -B -Wall %__SourceDir%\scripts\genEtwProvider.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate %__IntermediatesIncDir% --exc %__SourceDir%\vm\ClrEtwAllMeta.lst || exit /b 1
+ "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEtwProvider.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate %__IntermediatesIncDir% --exc %__SourceDir%\vm\ClrEtwAllMeta.lst || exit /b 1
)
if /i "%__DoCrossArchBuild%"=="1" (
@@ -431,13 +431,13 @@ if /i "%__DoCrossArchBuild%"=="1" (
echo %__MsgPrefix%Laying out dynamically generated files consumed by the crossarch build system
echo %__MsgPrefix%Laying out dynamically generated Event test files and etmdummy stub functions
- !PYTHON! -B -Wall %__SourceDir%\scripts\genEventing.py --inc !__CrossCompIntermediatesIncDir! --dummy !__CrossCompIntermediatesIncDir!\etmdummy.h --man %__SourceDir%\vm\ClrEtwAll.man --nonextern || exit /b 1
+ "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEventing.py --inc !__CrossCompIntermediatesIncDir! --dummy !__CrossCompIntermediatesIncDir!\etmdummy.h --man %__SourceDir%\vm\ClrEtwAll.man --nonextern || exit /b 1
echo %__MsgPrefix%Laying out dynamically generated EventPipe Implementation
- !PYTHON! -B -Wall %__SourceDir%\scripts\genEventPipe.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate !__CrossCompIntermediatesEventingDir!\eventpipe --nonextern || exit /b 1
+ "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEventPipe.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate !__CrossCompIntermediatesEventingDir!\eventpipe --nonextern || exit /b 1
echo %__MsgPrefix%Laying out ETW event logging interface
- !PYTHON! -B -Wall %__SourceDir%\scripts\genEtwProvider.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate !__CrossCompIntermediatesIncDir! --exc %__SourceDir%\vm\ClrEtwAllMeta.lst || exit /b 1
+ "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEtwProvider.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate !__CrossCompIntermediatesIncDir! --exc %__SourceDir%\vm\ClrEtwAllMeta.lst || exit /b 1
)
REM =========================================================================================