[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.20-204-g221d8e8

eric at webkit.org eric at webkit.org
Wed Feb 10 22:18:43 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit c8dec872af9ac7529db1f14cb73e9354c58f6de7
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Feb 8 10:48:17 2010 +0000

    2010-02-08  Leith Bade  <leith at leithalweapon.geek.nz>
    
            Reviewed by Darin Adler.
    
            Fixes: https://bugs.webkit.org/show_bug.cgi?id=34637
            Corrects the newline inserted into WebKitOutputDir, and WebKitLibrariesDir Windows
            environemnt variables when there is a space in the user's /home path.
    
            * Scripts/webkitdirs.pm:
             - Added missing quotes around $sourceDir in argument list of cygpath in determineWindowsSourceDir().
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54477 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 0353846..1a736b9 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,14 @@
+2010-02-08  Leith Bade  <leith at leithalweapon.geek.nz>
+
+        Reviewed by Darin Adler.
+
+        Fixes: https://bugs.webkit.org/show_bug.cgi?id=34637
+        Corrects the newline inserted into WebKitOutputDir, and WebKitLibrariesDir Windows
+        environemnt variables when there is a space in the user's /home path.
+
+        * Scripts/webkitdirs.pm:
+         - Added missing quotes around $sourceDir in argument list of cygpath in determineWindowsSourceDir().
+
 2010-02-05  Alexey Proskuryakov  <ap at apple.com>
 
         Reviewed by Oliver Hunt.
diff --git a/WebKitTools/Scripts/webkitdirs.pm b/WebKitTools/Scripts/webkitdirs.pm
index 5ae4dce..fe3277d 100644
--- a/WebKitTools/Scripts/webkitdirs.pm
+++ b/WebKitTools/Scripts/webkitdirs.pm
@@ -1107,7 +1107,7 @@ sub determineWindowsSourceDir()
 {
     return if $windowsSourceDir;
     my $sourceDir = sourceDir();
-    chomp($windowsSourceDir = `cygpath -w $sourceDir`);
+    chomp($windowsSourceDir = `cygpath -w '$sourceDir'`);
 }
 
 sub windowsSourceDir()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list