summaryrefslogtreecommitdiffstats
path: root/PCbuild/_freeze_module.vcxproj
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2021-12-18 13:05:45 (GMT)
committerGitHub <noreply@github.com>2021-12-18 13:05:45 (GMT)
commit6fc91daf730c60b08b4b32cdce28ff26505a0622 (patch)
tree56de731264b748a79c5c698d4f944a7858ff3d0b /PCbuild/_freeze_module.vcxproj
parent6214caafbe66e34e84c1809abf0b7aab6791956b (diff)
downloadcpython-6fc91daf730c60b08b4b32cdce28ff26505a0622.zip
cpython-6fc91daf730c60b08b4b32cdce28ff26505a0622.tar.gz
cpython-6fc91daf730c60b08b4b32cdce28ff26505a0622.tar.bz2
bpo-46088: Automatically detect or install bootstrap Python runtime when building from Visual Studio (GH-30143)
Diffstat (limited to 'PCbuild/_freeze_module.vcxproj')
-rw-r--r--PCbuild/_freeze_module.vcxproj5
1 files changed, 4 insertions, 1 deletions
diff --git a/PCbuild/_freeze_module.vcxproj b/PCbuild/_freeze_module.vcxproj
index 11a6a87..42798bf 100644
--- a/PCbuild/_freeze_module.vcxproj
+++ b/PCbuild/_freeze_module.vcxproj
@@ -432,7 +432,10 @@
<Message Text="Updated files: @(_Updated->'%(Filename)%(Extension)',', ')"
Condition="'@(_Updated)' != ''" Importance="high" />
</Target>
- <Target Name="_RebuildDeepFrozen" AfterTargets="_RebuildFrozen" Condition="$(Configuration) != 'PGUpdate'">
+ <Target Name="_RebuildDeepFrozen"
+ AfterTargets="_RebuildFrozen"
+ DependsOnTargets="FindPythonForBuild"
+ Condition="$(Configuration) != 'PGUpdate'">
<Exec Command='$(PythonForBuild) "$(PySourcePath)Tools\scripts\deepfreeze.py" "%(None.OutFile)" "-m" "%(None.ModName)" -o "%(None.IntFile)"' />
<Copy SourceFiles="%(None.IntFile)"