Changeset 195613 in webkit


Ignore:
Timestamp:
Jan 26, 2016 1:14:33 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[webkitdirs] isCMakeBuild should be true by default
https://bugs.webkit.org/show_bug.cgi?id=153497

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-26
Reviewed by Michael Catanzaro.

  • Scripts/webkitdirs.pm:

(isCMakeBuild):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r195597 r195613  
     12016-01-26  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        [webkitdirs] isCMakeBuild should be true by default
     4        https://bugs.webkit.org/show_bug.cgi?id=153497
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * Scripts/webkitdirs.pm:
     9        (isCMakeBuild):
     10
    1112016-01-26  Daniel Bates  <dabates@apple.com>
    212
  • trunk/Tools/Scripts/webkitdirs.pm

    r195163 r195613  
    20912091sub isCMakeBuild()
    20922092{
    2093     if (isEfl() || isGtk() || isAnyWindows()) {
    2094         return 1;
    2095     }
     2093    return 1 unless isAppleMacWebKit();
    20962094    determineIsCMakeBuild();
    20972095    return $isCMakeBuild;
Note: See TracChangeset for help on using the changeset viewer.