Changeset 138246 in webkit


Ignore:
Timestamp:
Dec 20, 2012 5:45:47 AM (11 years ago)
Author:
Csaba Osztrogonác
Message:

[Qt] EWS bots should call qmake always
https://bugs.webkit.org/show_bug.cgi?id=90049

Reviewed by Simon Hausmann.

  • Scripts/webkitdirs.pm:

(buildQMakeProjects):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r138239 r138246  
     12012-12-20  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [Qt] EWS bots should call qmake always
     4        https://bugs.webkit.org/show_bug.cgi?id=90049
     5
     6        Reviewed by Simon Hausmann.
     7
     8        * Scripts/webkitdirs.pm:
     9        (buildQMakeProjects):
     10
    1112012-12-20  Jochen Eisinger  <jochen@chromium.org>
    212
  • trunk/Tools/Scripts/webkitdirs.pm

    r138136 r138246  
    23572357    my $needsIncrementalBuild = 0;
    23582358
     2359    # Full incremental build (run qmake) needed on buildbots and EWS bots always.
     2360    if (grep(/CONFIG\+=buildbot/,@buildParams)) {
     2361        $needsIncrementalBuild = 1;
     2362    }
     2363
    23592364    if ($svnRevision ne $previousSvnRevision) {
    23602365        print "Last built revision was " . $previousSvnRevision .
Note: See TracChangeset for help on using the changeset viewer.