[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

abarth at webkit.org abarth at webkit.org
Sun Feb 20 23:25:01 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 08e888e3cffc4547ea020d919d24235e7ec4fe98
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jan 20 12:16:04 2011 +0000

    2011-01-20  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Tony Chang.
    
            Chromium builders don't delete unversioned directories when DEPS change
            https://bugs.webkit.org/show_bug.cgi?id=52745
    
            If we pass this option to gclient sync, gclient will delete directories
            that are no longer part of DEPS instead of leaving them around to
            confuse us later.  Apparently, the downstream buildbots use this option
            already.
    
            * Scripts/update-webkit-chromium:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76222 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Tools/ChangeLog b/Tools/ChangeLog
index 0492c4d..84a5d3e 100644
--- a/Tools/ChangeLog
+++ b/Tools/ChangeLog
@@ -1,3 +1,17 @@
+2011-01-20  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Tony Chang.
+
+        Chromium builders don't delete unversioned directories when DEPS change
+        https://bugs.webkit.org/show_bug.cgi?id=52745
+
+        If we pass this option to gclient sync, gclient will delete directories
+        that are no longer part of DEPS instead of leaving them around to
+        confuse us later.  Apparently, the downstream buildbots use this option
+        already.
+
+        * Scripts/update-webkit-chromium:
+
 2011-01-19  Dirk Pranke  <dpranke at chromium.org>
 
         Unreviewed, build fix - I pulled this patch in to fix an issue
diff --git a/Tools/Scripts/update-webkit-chromium b/Tools/Scripts/update-webkit-chromium
index 5610487..b3f0ae3 100755
--- a/Tools/Scripts/update-webkit-chromium
+++ b/Tools/Scripts/update-webkit-chromium
@@ -65,4 +65,5 @@ GetOptions(
 print "Updating chromium port dependencies using gclient...\n";
 my @gclientArgs = ($gclientPath, "sync");
 push @gclientArgs, "--force" if $force;
+push @gclientArgs, "--delete_unversioned_trees" if $force;
 system(@gclientArgs) == 0 or die $!;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list