Closed
Description
"Python build finished successfully!" is only printed if there were missing modules:
Lines 539 to 547 in cf730b5
Either we print it every time the build succeeds:
diff --git a/setup.py b/setup.py
index 4c497346e8..e87da57a47 100644
--- a/setup.py
+++ b/setup.py
@@ -538,5 +538,9 @@ def print_three_column(lst):
- if self.missing:
+ if not self.failed:
print()
print("Python build finished successfully!")
+ print()
+
+ if self.missing:
+ print()
print("The necessary bits to build these optional modules were not "
Or we just remove that line from setup.py
.
I'm fine with either.
Originally reported by @izumiberat in #93659 (comment)