diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-07-25 01:03:22 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-07-25 01:03:22 (GMT) |
commit | 6ed63f31e9ca137b543cbaa5a7a61224c8a1e659 (patch) | |
tree | e00475331361e14f4fd80d447e51192247876ef6 | |
parent | df450d1a18ba668874a2353a3870ba99c4848a75 (diff) | |
download | cpython-6ed63f31e9ca137b543cbaa5a7a61224c8a1e659.zip cpython-6ed63f31e9ca137b543cbaa5a7a61224c8a1e659.tar.gz cpython-6ed63f31e9ca137b543cbaa5a7a61224c8a1e659.tar.bz2 |
Fixes default intermediate directory when building on Windows.
-rw-r--r-- | PCbuild/pyproject.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index 05473fd..d1ac998 100644 --- a/PCbuild/pyproject.props +++ b/PCbuild/pyproject.props @@ -5,7 +5,7 @@ <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion> <OutDir>$(BuildPath)</OutDir> <OutDir Condition="!HasTrailingSlash($(OutDir))">$(OutDir)\</OutDir> - <Py_IntDir Condition="'$(PyIntDir)' == ''">$(SolutionDir)obj\</Py_IntDir> + <Py_IntDir Condition="'$(Py_IntDir)' == ''">$(MSBuildThisFileDirectory)obj\</Py_IntDir> <IntDir>$(Py_IntDir)\$(ArchName)_$(Configuration)\$(ProjectName)\</IntDir> <IntDir Condition="$(Configuration) == 'PGInstrument' or $(Configuration) == 'PGUpdate'">$(Py_IntDir)\$(ArchName)_PGO\$(ProjectName)\</IntDir> <TargetName Condition="'$(TargetName)' == ''">$(ProjectName)</TargetName> |