summaryrefslogtreecommitdiff
path: root/src/pal/tools
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2016-01-19 19:24:23 +0100
committerRama Krishnan Raghupathy <ramarag@microsoft.com>2016-01-21 14:39:01 -0800
commit2c25d6ca44e3129ace57f6383260a42023a6d646 (patch)
treea6132b98d4c43b788eb8bdf34794e97d84bd724a /src/pal/tools
parentaae412433d6235b0a1c5f8f0301b2cc066857cc6 (diff)
downloadcoreclr-2c25d6ca44e3129ace57f6383260a42023a6d646.tar.gz
coreclr-2c25d6ca44e3129ace57f6383260a42023a6d646.tar.bz2
coreclr-2c25d6ca44e3129ace57f6383260a42023a6d646.zip
FIx the incremental build for Windows
Conflicts: build.cmd src/dlls/clretwrc/CMakeLists.txt Cleanup
Diffstat (limited to 'src/pal/tools')
-rw-r--r--src/pal/tools/probe-win.ps114
1 files changed, 0 insertions, 14 deletions
diff --git a/src/pal/tools/probe-win.ps1 b/src/pal/tools/probe-win.ps1
index 303c084cc4..783cb6dfe0 100644
--- a/src/pal/tools/probe-win.ps1
+++ b/src/pal/tools/probe-win.ps1
@@ -49,24 +49,10 @@ function LocateCMake
return $newestCMakePath
}
-function LocatePython
-{
- $errorMsg = "python is a pre-requisite to build this repository but it was not found on the path. Please install Python 2.7.9 from https://www.python.org/downloads/ and ensure it is on your path."
- $inPathPath = (get-command python.exe -ErrorAction SilentlyContinue).Path
- if ($inPathPath -eq $null) {
- Throw $errorMsg
- }
- return $inPathPath
-}
-
-
try {
$cmakePath = LocateCMake
[System.Console]::WriteLine("set CMakePath=" + $cmakePath)
- $pythonPath = LocatePython
- [System.Console]::WriteLine("set PythonPath=" + $pythonPath)
-
}
catch {
[System.Console]::Error.WriteLine($_.Exception.Message)