https://github.com/python/cpython/commit/3a555f09f387a0212e5961535ae4e31178b26c11 commit: 3a555f09f387a0212e5961535ae4e31178b26c11 branch: main author: Chris Eibl <138194463+chris-e...@users.noreply.github.com> committer: zooba <steve.do...@microsoft.com> date: 2025-02-24T21:35:00Z summary:
gh-130419: Do not build the _freeze_module project twice in Windows PGO builds (GH-130420) files: M PCbuild/pcbuild.proj diff --git a/PCbuild/pcbuild.proj b/PCbuild/pcbuild.proj index a2a637a3044373..c7ddc1d23b301c 100644 --- a/PCbuild/pcbuild.proj +++ b/PCbuild/pcbuild.proj @@ -95,7 +95,8 @@ </ItemGroup> <Target Name="Build"> - <MSBuild Projects="@(FreezeProjects)" + <MSBuild Condition="$(Configuration) != 'PGUpdate'" + Projects="@(FreezeProjects)" Properties="Configuration=%(Configuration);Platform=%(Platform);%(Properties)" BuildInParallel="%(BuildInParallel)" StopOnFirstFailure="true" _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com