summaryrefslogtreecommitdiffstats
path: root/games/pingus/patches/scons-python3.patch
diff options
context:
space:
mode:
author Heinz Wiesinger2021-10-16 11:16:35 +0200
committer Willy Sudiarto Raharjo2021-10-18 02:50:31 +0200
commit282936bfd1ae6f0c306c347e4c43b51344e60972 (patch)
tree1e9f3881c3922c9d023e6df1668d00c71951f44f /games/pingus/patches/scons-python3.patch
parent0adceb1a2733cb577a5783af1317fb4d48f5fd0c (diff)
downloadslackbuilds-282936bfd1ae6f0c306c347e4c43b51344e60972.tar.gz
games/pingus: Fix building on -current
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/pingus/patches/scons-python3.patch')
-rw-r--r--games/pingus/patches/scons-python3.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/games/pingus/patches/scons-python3.patch b/games/pingus/patches/scons-python3.patch
new file mode 100644
index 0000000000..96c36e4563
--- /dev/null
+++ b/games/pingus/patches/scons-python3.patch
@@ -0,0 +1,19 @@
+--- pingus-0.7.6/SConscript.orig 2019-07-27 08:28:23.143619494 +0000
++++ pingus-0.7.6/SConscript 2019-07-27 08:29:35.844531921 +0000
+@@ -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):