summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2021-08-03 16:38:04 (GMT)
committerGitHub <noreply@github.com>2021-08-03 16:38:04 (GMT)
commit4b46db68d0cb4a84f4f13501218a3ec2438fca1e (patch)
tree9684c94c83e0ae5e9f1a413829b41d989d95af70
parentbc2841c7a9fe2b05ef77ebdf77701188dc83b2ce (diff)
downloadcpython-4b46db68d0cb4a84f4f13501218a3ec2438fca1e.zip
cpython-4b46db68d0cb4a84f4f13501218a3ec2438fca1e.tar.gz
cpython-4b46db68d0cb4a84f4f13501218a3ec2438fca1e.tar.bz2
Ensure LICENSE.txt file is generated even in PGO builds (GH-27580) (GH-27582)
-rw-r--r--PCbuild/regen.targets4
1 files changed, 1 insertions, 3 deletions
diff --git a/PCbuild/regen.targets b/PCbuild/regen.targets
index ff56d11..08ace57 100644
--- a/PCbuild/regen.targets
+++ b/PCbuild/regen.targets
@@ -110,7 +110,5 @@
<Message Text="Wrote $(OutDir)LICENSE.txt" Importance="high" />
</Target>
- <Target Name="PostBuildRegen"
- Condition="$(Configuration) != 'PGInstrument' and $(Configuration) != 'PGUpdate'"
- DependsOnTargets="_RegenLicense" />
+ <Target Name="PostBuildRegen" DependsOnTargets="_RegenLicense" />
</Project>