Changeset 121785 in webkit


Ignore:
Timestamp:
Jul 3, 2012 10:28:32 AM (12 years ago)
Author:
tony@chromium.org
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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r121784 r121785  
     12012-07-03  Tony Chang  <tony@chromium.org>
     2
     3        [chromium] Handle trailing backslash on %VSINSTALLDIR%
     4        https://bugs.webkit.org/show_bug.cgi?id=90410
     5
     6        Reviewed by Ojan Vafai.
     7
     8        * Scripts/webkitdirs.pm:
     9        (buildChromiumVisualStudioProject): Handle VSINSTALLDIR ending in a backslash, the backslash escapes the closing double quote.
     10
    1112012-07-02  Ojan Vafai  <ojan@chromium.org>
    212
  • trunk/Tools/Scripts/webkitdirs.pm

    r121777 r121785  
    25322532        $vsInstallDir = "$programFilesPath/Microsoft Visual Studio 8";
    25332533    }
     2534    $vsInstallDir =~ s,\\,/,g;
    25342535    $vsInstallDir = `cygpath "$vsInstallDir"` if isCygwin();
    25352536    chomp $vsInstallDir;
Note: See TracChangeset for help on using the changeset viewer.