Title: [121785] trunk/Tools
Revision
121785
Author
[email protected]
Date
2012-07-03 10:28:32 -0700 (Tue, 03 Jul 2012)

Log Message

[chromium] Handle trailing backslash on %VSINSTALLDIR%
https://bugs.webkit.org/show_bug.cgi?id=90410

Reviewed by Ojan Vafai.

* Scripts/webkitdirs.pm:
(buildChromiumVisualStudioProject): Handle VSINSTALLDIR ending in a backslash, the backslash escapes the closing double quote.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (121784 => 121785)


--- trunk/Tools/ChangeLog	2012-07-03 17:21:52 UTC (rev 121784)
+++ trunk/Tools/ChangeLog	2012-07-03 17:28:32 UTC (rev 121785)
@@ -1,3 +1,13 @@
+2012-07-03  Tony Chang  <[email protected]>
+
+        [chromium] Handle trailing backslash on %VSINSTALLDIR%
+        https://bugs.webkit.org/show_bug.cgi?id=90410
+
+        Reviewed by Ojan Vafai.
+
+        * Scripts/webkitdirs.pm:
+        (buildChromiumVisualStudioProject): Handle VSINSTALLDIR ending in a backslash, the backslash escapes the closing double quote.
+
 2012-07-02  Ojan Vafai  <[email protected]>
 
         Make the skia_test_expectations.txt file optional.

Modified: trunk/Tools/Scripts/webkitdirs.pm (121784 => 121785)


--- trunk/Tools/Scripts/webkitdirs.pm	2012-07-03 17:21:52 UTC (rev 121784)
+++ trunk/Tools/Scripts/webkitdirs.pm	2012-07-03 17:28:32 UTC (rev 121785)
@@ -2531,6 +2531,7 @@
     } else {
         $vsInstallDir = "$programFilesPath/Microsoft Visual Studio 8";
     }
+    $vsInstallDir =~ s,\\,/,g;
     $vsInstallDir = `cygpath "$vsInstallDir"` if isCygwin();
     chomp $vsInstallDir;
     $vcBuildPath = "$vsInstallDir/Common7/IDE/devenv.com";
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to