Title: [128333] trunk/Tools
Revision
128333
Author
commit-qu...@webkit.org
Date
2012-09-12 10:20:04 -0700 (Wed, 12 Sep 2012)

Log Message

Fix Qt/Windows build with Python3
https://bugs.webkit.org/show_bug.cgi?id=96473

Patch by Simon Hausmann <simon.hausm...@nokia.com> on 2012-09-12
Reviewed by Csaba Osztrogonác.

In Python 3 print is a real function, so we must use parentheses around
the function parameters. This is backwards compatible with Python 2.

* Scripts/generate-win32-export-forwards:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (128332 => 128333)


--- trunk/Tools/ChangeLog	2012-09-12 16:57:16 UTC (rev 128332)
+++ trunk/Tools/ChangeLog	2012-09-12 17:20:04 UTC (rev 128333)
@@ -1,5 +1,17 @@
 2012-09-12  Simon Hausmann  <simon.hausm...@nokia.com>
 
+        Fix Qt/Windows build with Python3
+        https://bugs.webkit.org/show_bug.cgi?id=96473
+
+        Reviewed by Csaba Osztrogonác.
+
+        In Python 3 print is a real function, so we must use parentheses around
+        the function parameters. This is backwards compatible with Python 2.
+
+        * Scripts/generate-win32-export-forwards:
+
+2012-09-12  Simon Hausmann  <simon.hausm...@nokia.com>
+
         Unreviewed trivial build fix for Qt/Windows after bug #96358.
 
         As pointed out by Kevin, we should inject the "set PATH=..." statement

Modified: trunk/Tools/Scripts/generate-win32-export-forwards (128332 => 128333)


--- trunk/Tools/Scripts/generate-win32-export-forwards	2012-09-12 16:57:16 UTC (rev 128332)
+++ trunk/Tools/Scripts/generate-win32-export-forwards	2012-09-12 17:20:04 UTC (rev 128333)
@@ -45,7 +45,7 @@
         if match:
             symbols.add(match.group("symbol"))
 
-print "Forwarding %s symbols from %s" % (len(symbols), " ".join(libraries))
+print("Forwarding %s symbols from %s" % (len(symbols), " ".join(libraries)))
 
 exportFile = open(outputFileName, "w")
 for symbol in symbols:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to