mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
19 lines
473 B
Diff
19 lines
473 B
Diff
--- a/SConscript
|
|
+++ b/SConscript
|
|
@@ -126,12 +126,12 @@
|
|
def configure_end(self):
|
|
self.env = self.conf.Finish()
|
|
|
|
- print "Reports:"
|
|
- print self.reports
|
|
+ print("Reports:")
|
|
+ print(self.reports)
|
|
|
|
if not self.fatal_error == "":
|
|
- print "Fatal Errors:"
|
|
- print self.fatal_error
|
|
+ print("Fatal Errors:")
|
|
+ print(self.fatal_error)
|
|
Exit(1)
|
|
|
|
def configure_gxx(self):
|