summaryrefslogtreecommitdiffstats
path: root/PCbuild/python.props
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-07-27 21:56:58 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-07-27 21:56:58 (GMT)
commitde9fb28bf1a1d506916c34a5e4858807dc1f9575 (patch)
treec2ecb9bfd152ccde9de0a20843ad487373e97032 /PCbuild/python.props
parentbea232a15fc818341217901772c7e622e9f9332d (diff)
downloadcpython-de9fb28bf1a1d506916c34a5e4858807dc1f9575.zip
cpython-de9fb28bf1a1d506916c34a5e4858807dc1f9575.tar.gz
cpython-de9fb28bf1a1d506916c34a5e4858807dc1f9575.tar.bz2
Allow intermediate build directory to be overridden.
Diffstat (limited to 'PCbuild/python.props')
-rw-r--r--PCbuild/python.props3
1 files changed, 2 insertions, 1 deletions
diff --git a/PCbuild/python.props b/PCbuild/python.props
index 22faf44..c87ad80 100644
--- a/PCbuild/python.props
+++ b/PCbuild/python.props
@@ -26,7 +26,8 @@
<PySourcePath Condition="!HasTrailingSlash($(PySourcePath))">$(PySourcePath)\</PySourcePath>
<!-- Directory where build outputs are put -->
- <BuildPath Condition="'$(BuildPath)' == ''">$(PySourcePath)PCBuild\$(ArchName)\</BuildPath>
+ <BuildPath Condition="'$(PyBuildPath)' == ''">$(PySourcePath)PCBuild\$(ArchName)\</BuildPath>
+ <BuildPath Condition="'$(PyBuildPath)' != ''">$(PyBuildPath)</BuildPath>
<BuildPath Condition="!HasTrailingSlash($(BuildPath))">$(BuildPath)\</BuildPath>
<!-- Directories of external projects. tcltk is handled in tcltk.props -->