Changeset 160846 in webkit


Ignore:
Timestamp:
Dec 19, 2013 11:10:01 AM (10 years ago)
Author:
roger_fong@apple.com
Message:

Don't check VSINSTALLDIR when looking for Visual Studio install directory.
https://bugs.webkit.org/show_bug.cgi?id=125998.

Reviewed by Alexey Proskuryakov.

  • Scripts/webkitdirs.pm:

(visualStudioInstallDir):
Get rid of the VSINSTALLDIR check. We can't build on anything besides VS2013 now anyways.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r160842 r160846  
     12013-12-19  Roger Fong  <roger_fong@apple.com>
     2
     3        Don't check VSINSTALLDIR when looking for Visual Studio install directory.
     4        https://bugs.webkit.org/show_bug.cgi?id=125998.
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * Scripts/webkitdirs.pm:
     9        (visualStudioInstallDir):
     10        Get rid of the VSINSTALLDIR check. We can't build on anything besides VS2013 now anyways.
     11
    1122013-12-19  Mario Sanchez Prada  <mario.prada@samsung.com>
    213
  • trunk/Tools/Scripts/webkitdirs.pm

    r160556 r160846  
    433433    return $vsInstallDir if defined $vsInstallDir;
    434434
    435     if ($ENV{'VSINSTALLDIR'}) {
    436         $vsInstallDir = $ENV{'VSINSTALLDIR'};
    437         $vsInstallDir =~ s|[\\/]$||;
    438     } else {
    439         $vsInstallDir = File::Spec->catdir(programFilesPath(), "Microsoft Visual Studio 12.0");
    440     }
     435    $vsInstallDir = File::Spec->catdir(programFilesPath(), "Microsoft Visual Studio 12.0");
     436
    441437    chomp($vsInstallDir = `cygpath "$vsInstallDir"`) if isCygwin();
    442438
Note: See TracChangeset for help on using the changeset viewer.