]> granicus.if.org Git - python/commitdiff
bpo-36448: mention 'make regen-all' in error message (GH-12585)
authorJeroen Demeyer <J.Demeyer@UGent.be>
Fri, 29 Mar 2019 18:37:22 +0000 (19:37 +0100)
committerSteve Dower <steve.dower@microsoft.com>
Fri, 29 Mar 2019 18:37:22 +0000 (11:37 -0700)
PCbuild/_freeze_importlib.vcxproj

index 998fba6bb5444140d10ca4554daaa42296ff7c33..76885d8b354a8b8ecf99f279e5695f36c2a3171a 100644 (file)
       <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'"