[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

zoltan at webkit.org zoltan at webkit.org
Wed Dec 22 13:24:10 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ba0564bb05d996e702ccf86c83f3f333b8b98518
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 14 09:46:50 2010 +0000

    [Qt] Build-webkit shows a warning when WebKitBuild directory is not exist
    https://bugs.webkit.org/show_bug.cgi?id=45736
    
    Reviewed by Kenneth Rohde Christiansen.
    
    Build-webkit has showed a warning when WebKitBuild didn't exist, add
    an additional condition to avoid it.
    
    * Scripts/build-webkit:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67456 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 6c4092c..677a04b 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-14  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [Qt] Build-webkit shows a warning when WebKitBuild directory is not exist
+        https://bugs.webkit.org/show_bug.cgi?id=45736
+
+        Build-webkit has showed a warning when WebKitBuild didn't exist, add
+        an additional condition to avoid it.
+
+        * Scripts/build-webkit:
+
 2010-09-13  Eric Seidel  <eric at webkit.org>
 
         Reviewed by Adam Barth.
diff --git a/WebKitTools/Scripts/build-webkit b/WebKitTools/Scripts/build-webkit
index 81189af..c783203 100755
--- a/WebKitTools/Scripts/build-webkit
+++ b/WebKitTools/Scripts/build-webkit
@@ -292,7 +292,7 @@ setConfiguration();
 my $productDir = productDir();
 
 # Remove 0 byte sized files from productDir after slave lost for Qt buildbots.
-File::Find::find(\&unlinkZeroFiles, $productDir) if isQt();
+File::Find::find(\&unlinkZeroFiles, $productDir) if (isQt() && -e $productDir);
 
 sub unlinkZeroFiles ()
 {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list