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

mitz at apple.com mitz at apple.com
Thu Apr 8 00:22:29 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit ec686bf33ad335f7a1aa3f0959e7415484cb8fb4
Author: mitz at apple.com <mitz at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Dec 7 03:27:54 2009 +0000

    REGRESSION (r51728): update-webkit fails when the current directory is
    not inside a Subversion working copy
    https://bugs.webkit.org/show_bug.cgi?id=32204
    
    Reviewed by Adele Peterson.
    
    * Scripts/update-webkit: Invoke isSVN() in the correct working
    directory.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51745 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 4c1db60..85b232e 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,14 @@
+2009-12-06  Dan Bernstein  <mitz at apple.com>
+
+        Reviewed by Adele Peterson.
+
+        REGRESSION (r51728): update-webkit fails when the current directory is
+        not inside a Subversion working copy
+        https://bugs.webkit.org/show_bug.cgi?id=32204
+
+        * Scripts/update-webkit: Invoke isSVN() in the correct working
+        directory.
+
 2009-12-06  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebKitTools/Scripts/update-webkit b/WebKitTools/Scripts/update-webkit
index 2ed9aa4..5b9d419 100755
--- a/WebKitTools/Scripts/update-webkit
+++ b/WebKitTools/Scripts/update-webkit
@@ -47,6 +47,8 @@ my $showHelp;
 
 determineIsChromium();
 
+chdirWebKit();
+
 my $isGit = isGit();
 my $isSVN = isSVN();
 
@@ -71,7 +73,6 @@ push @svnOptions, '-q' if $quiet;
 # Don't prompt when using svn-1.6 or newer.
 push @svnOptions, qw(--accept postpone) if isSVNVersion16OrNewer();
 
-chdirWebKit();
 print "Updating OpenSource\n" unless $quiet;
 runSvnUpdate() if $isSVN;
 runGitUpdate() if $isGit;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list