[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:31:22 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit fa5c8ed9fa567ee17416d4c07f2feaed7aa194a9
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 10 19:57:54 2009 +0000

    2009-12-10  Adam Barth  <abarth at webkit.org>
    
            Unreviewed.  Turns out every StepSequence command needs a --quiet
            option.
    
            * Scripts/modules/stepsequence.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51956 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 5d63a5d..358997c 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,10 @@
+2009-12-10  Adam Barth  <abarth at webkit.org>
+
+        Unreviewed.  Turns out every StepSequence command needs a --quiet
+        option.
+
+        * Scripts/modules/stepsequence.py:
+
 2009-12-10  Eric Z. Ayers  <zundel at google.com>
 
         Reviewed by Pavel Feldman.
diff --git a/WebKitTools/Scripts/modules/stepsequence.py b/WebKitTools/Scripts/modules/stepsequence.py
index 65bc424..6f085c9 100644
--- a/WebKitTools/Scripts/modules/stepsequence.py
+++ b/WebKitTools/Scripts/modules/stepsequence.py
@@ -38,7 +38,10 @@ class StepSequence(object):
         self._steps = steps
 
     def options(self):
-        collected_options = [CommandOptions.parent_command]
+        collected_options = [
+            CommandOptions.parent_command,
+            CommandOptions.quiet,
+        ]
         for step in self._steps:
             collected_options = collected_options + step.options()
         # Remove duplicates.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list