[Python-checkins] bpo-36448: mention 'make regen-all' in error message (GH-12585)

Steve Dower webhook-mailer at python.org
Fri Mar 29 14:37:43 EDT 2019


https://github.com/python/cpython/commit/3396d1e0ca858065c5bb7e5a9737be6ffc4028f7
commit: 3396d1e0ca858065c5bb7e5a9737be6ffc4028f7
branch: master
author: Jeroen Demeyer <J.Demeyer at UGent.be>
committer: Steve Dower <steve.dower at microsoft.com>
date: 2019-03-29T11:37:22-07:00
summary:

bpo-36448: mention 'make regen-all' in error message (GH-12585)

files:
M PCbuild/_freeze_importlib.vcxproj

diff --git a/PCbuild/_freeze_importlib.vcxproj b/PCbuild/_freeze_importlib.vcxproj
index 998fba6bb544..76885d8b354a 100644
--- a/PCbuild/_freeze_importlib.vcxproj
+++ b/PCbuild/_freeze_importlib.vcxproj
@@ -125,9 +125,9 @@
       <Output TaskParameter="CopiedFiles" ItemName="_Updated" />
     </Copy>
     
-    <Warning Text="@(_Updated->'%(Filename)%(Extension)',', ') updated. You will need to rebuild pythoncore to see the changes."
+    <Warning Text="@(_Updated->'%(Filename)%(Extension)',', ') updated. You will need to rebuild pythoncore to see the changes.%0D%0A%0D%0AIf you are not developing on Windows but you see this error on a continuous integration build, you need to run 'make regen-all' and commit any changes."
              Condition="'@(_Updated)' != '' and $(Configuration) == 'Debug'" />
-    <Error Text="@(_Updated->'%(Filename)%(Extension)',', ') updated. You will need to rebuild pythoncore to see the changes."
+    <Error Text="@(_Updated->'%(Filename)%(Extension)',', ') updated. You will need to rebuild pythoncore to see the changes.%0D%0A%0D%0AIf you are not developing on Windows but you see this error on a continuous integration build, you need to run 'make regen-all' and commit any changes."
            Condition="'@(_Updated)' != '' and $(Configuration) == 'Release'" />
   </Target>
   <Target Name="RebuildImportLib" AfterTargets="AfterBuild" Condition="$(Configuration) == 'Debug' or $(Configuration) == 'Release'"



More information about the Python-checkins mailing list