Commit 250ab0e0 authored by eric@webkit.org's avatar eric@webkit.org

2010-02-08 Leith Bade <leith@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: svn://svn.chromium.org/blink/trunk@54477 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 64e724b6
2010-02-08 Leith Bade <leith@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@apple.com> 2010-02-05 Alexey Proskuryakov <ap@apple.com>
Reviewed by Oliver Hunt. Reviewed by Oliver Hunt.
......
...@@ -1107,7 +1107,7 @@ sub determineWindowsSourceDir() ...@@ -1107,7 +1107,7 @@ sub determineWindowsSourceDir()
{ {
return if $windowsSourceDir; return if $windowsSourceDir;
my $sourceDir = sourceDir(); my $sourceDir = sourceDir();
chomp($windowsSourceDir = `cygpath -w $sourceDir`); chomp($windowsSourceDir = `cygpath -w '$sourceDir'`);
} }
sub windowsSourceDir() sub windowsSourceDir()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment