diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-07-27 21:56:58 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-07-27 21:56:58 (GMT) |
commit | de9fb28bf1a1d506916c34a5e4858807dc1f9575 (patch) | |
tree | c2ecb9bfd152ccde9de0a20843ad487373e97032 /PCbuild/python.props | |
parent | bea232a15fc818341217901772c7e622e9f9332d (diff) | |
download | cpython-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.props | 3 |
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 --> |