Changeset 114387 in webkit


Ignore:
Timestamp:
Apr 17, 2012 9:26:48 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt] JSC build should handle --no-webkit2 option to avoid unwanted clean-builds
https://bugs.webkit.org/show_bug.cgi?id=77533

Patch by Nandor Huszka <hnandor@inf.u-szeged.hu> on 2012-04-17
Reviewed by Simon Hausmann.

Pick up the --no-webkit2 option from BUILD_WEBKIT_ARGS and pass on
the corresponding parameter to the buildQMakeProjects function.

  • Scripts/build-jsc:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r114386 r114387  
     12012-04-17  Nandor Huszka  <hnandor@inf.u-szeged.hu>
     2
     3        [Qt] JSC build should handle --no-webkit2 option to avoid unwanted clean-builds
     4        https://bugs.webkit.org/show_bug.cgi?id=77533
     5
     6        Reviewed by Simon Hausmann.
     7
     8        Pick up the --no-webkit2 option from BUILD_WEBKIT_ARGS and pass on
     9        the corresponding parameter to the buildQMakeProjects function.
     10
     11        * Scripts/build-jsc:
     12
    1132012-04-17  Christophe Dumez  <christophe.dumez@intel.com>
    214
  • trunk/Tools/Scripts/build-jsc

    r111802 r114387  
    6565    checkForArgumentAndRemoveFromARGV("--qt");
    6666    my @projects = ("WTF", "JavaScriptCore");
     67    # Pick up the --no-webkit2 option from BUILD_WEBKIT_ARGS if it is needed
     68    push @ARGV, split(/ /, $ENV{'BUILD_WEBKIT_ARGS'}) if ($ENV{'BUILD_WEBKIT_ARGS'});
     69    push @ARGV, "--qmakearg=CONFIG+=no_webkit2" if checkForArgumentAndRemoveFromARGV("--no-webkit2");
    6770    my $result = buildQMakeProjects(\@projects, 0, @ARGV);
    6871    exit exitStatus($result);
Note: See TracChangeset for help on using the changeset viewer.