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

eric at webkit.org eric at webkit.org
Thu Apr 8 01:41:20 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit fa9c560de1a41769b3eeec4dacbf312f53c7cf23
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