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

darin at apple.com darin at apple.com
Wed Dec 22 12:36:57 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit f6d7e4604a44800173599a5208f83d3d29761038
Author: darin at apple.com <darin at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 26 00:10:20 2010 +0000

    * Scripts/commit-log-editor: Fix perl warning for people who have no
    value for SVN_LOG_EDITOR or CVS_LOG_EDITOR.
    
    Reviewed by John Sullivan.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66059 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 8a4f084..fa65f78 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,10 @@
+2010-08-25  Darin Adler  <darin at apple.com>
+
+        Reviewed by John Sullivan.
+
+        * Scripts/commit-log-editor: Fix perl warning for people who have no
+        value for SVN_LOG_EDITOR or CVS_LOG_EDITOR.
+
 2010-08-25  Ojan Vafai  <ojan at chromium.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebKitTools/Scripts/commit-log-editor b/WebKitTools/Scripts/commit-log-editor
index 1be0fd0..f40295d 100755
--- a/WebKitTools/Scripts/commit-log-editor
+++ b/WebKitTools/Scripts/commit-log-editor
@@ -63,7 +63,7 @@ my $baseDir = baseProductDir();
 
 my $editor = $ENV{SVN_LOG_EDITOR};
 $editor = $ENV{CVS_LOG_EDITOR} if !$editor;
-$editor = "" if isCommitLogEditor($editor);
+$editor = "" if $editor && isCommitLogEditor($editor);
 
 my $splitEditor = 1;
 if (!$editor) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list