Changeset 83621 in webkit


Ignore:
Timestamp:
Apr 12, 2011 12:24:28 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-12 Thouraya ANDOLSI <thouraya.andolsi@st.com>

Reviewed by Eric Seidel.

[GTK] arguments passed to build-jsc and build-webkit scripts are not taken into account
https://bugs.webkit.org/show_bug.cgi?id=58333

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r83619 r83621  
     12011-04-12  Thouraya ANDOLSI  <thouraya.andolsi@st.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [GTK] arguments passed to build-jsc and build-webkit scripts are not taken into account
     6        https://bugs.webkit.org/show_bug.cgi?id=58333
     7
     8        * Scripts/build-jsc:
     9        * Scripts/build-webkit:
     10
    1112011-04-12  Tony Chang  <tony@chromium.org>
    212
  • trunk/Tools/Scripts/build-jsc

    r82231 r83621  
    6969    $result = buildVisualStudioProject("JavaScriptCore.vcproj/JavaScriptCore.sln");
    7070} elsif (isGtk()) {
    71     $result = buildGtkProject("JavaScriptCore");
     71    $result = buildGtkProject("JavaScriptCore", 0, @ARGV);
    7272} elsif (isQt()) {
    7373    # Remove duplicated --qt options to avoid passing them to qmake
  • trunk/Tools/Scripts/build-webkit

    r83342 r83621  
    575575    my $project = basename($dir);
    576576    if (isGtk()) {
     577        push(@options, @ARGV);
    577578        $result = buildGtkProject($project, $clean,  @options);
    578579    } elsif (isQt()) {
Note: See TracChangeset for help on using the changeset viewer.