[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
abarth at webkit.org
abarth at webkit.org
Wed Jan 6 00:03:35 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 4029f927125f5512128c03aa263d83250f10ce46
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Sun Dec 27 06:50:53 2009 +0000
2009-12-26 Adam Barth <abarth at webkit.org>
Reviewed by Eric Seidel.
[bzt] Make the qt build go fast
https://bugs.webkit.org/show_bug.cgi?id=32951
Make use of multiple cores, if available.
* Scripts/modules/webkitport.py:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52568 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 391fb68..2033ae1 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,14 @@
+2009-12-26 Adam Barth <abarth at webkit.org>
+
+ Reviewed by Eric Seidel.
+
+ [bzt] Make the qt build go fast
+ https://bugs.webkit.org/show_bug.cgi?id=32951
+
+ Make use of multiple cores, if available.
+
+ * Scripts/modules/webkitport.py:
+
2009-12-25 Daniel Bates <dbates at rim.com>
Reviewed by Eric Seidel.
diff --git a/WebKitTools/Scripts/modules/webkitport.py b/WebKitTools/Scripts/modules/webkitport.py
index 99ea174..a665bd3 100644
--- a/WebKitTools/Scripts/modules/webkitport.py
+++ b/WebKitTools/Scripts/modules/webkitport.py
@@ -115,6 +115,8 @@ class QtPort(WebKitPort):
def build_webkit_command(cls):
command = WebKitPort.build_webkit_command()
command.append("--qt")
+ # FIXME: We should probably detect the number of cores.
+ command.append('--makeargs="-j8"')
return command
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list