⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 98390 in webkit


Ignore:
Timestamp:
Oct 25, 2011, 1:54:27 PM (15 years ago)
Author:
abarth@webkit.org
Message:

Add a --make option to update-webkit to engage the Makefile-based build system
https://bugs.webkit.org/show_bug.cgi?id=70847

Reviewed by Dimitri Glazkov.

I can never remember what crazy environment variables I'm supposed to
set to tell GYP what to do.

  • Scripts/update-webkit:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r98387 r98390  
     12011-10-25  Adam Barth  <abarth@webkit.org>
     2
     3        Add a --make option to update-webkit to engage the Makefile-based build system
     4        https://bugs.webkit.org/show_bug.cgi?id=70847
     5
     6        Reviewed by Dimitri Glazkov.
     7
     8        I can never remember what crazy environment variables I'm supposed to
     9        set to tell GYP what to do.
     10
     11        * Scripts/update-webkit:
     12
    1132011-10-25  Raphael Kubo da Costa  <kubo@profusion.mobi>
    214
  • trunk/Tools/Scripts/update-webkit

    r93939 r98390  
    4848my $showHelp;
    4949my $useGYP = 0;
     50my $useMake = 0;
    5051
    5152determineIsChromium();
     
    6061    'q|quiet' => \$quiet,
    6162    'gyp' => \$useGYP,
     63    'make' => \$useMake,
    6264);
    6365
     
    6668Usage: @{[ basename($0) ]} [options]
    6769  --chromium          also update dependencies of the chromium port
     70  --make              generate the Makefile-based build system (Chromium only)
    6871  --chromium-android  also update dependencies of the chromium port for Android
    6972  -h|--help           show the help message
     
    7376__END__
    7477    exit 1;
     78}
     79
     80if ($useMake) {
     81    $ENV{"GYP_GENERATORS"} = "make";
    7582}
    7683
Note: See TracChangeset for help on using the changeset viewer.