[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

abarth at webkit.org abarth at webkit.org
Thu Apr 8 00:49:26 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 45aa54a0580798ed7fe628354b30b2213eb0c012
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