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

Changeset 98377 in webkit


Ignore:
Timestamp:
Oct 25, 2011, 12:37:13 PM (15 years ago)
Author:
dbates@webkit.org
Message:

build-webkit --clean should only clean build directory for CMake-based ports
https://bugs.webkit.org/show_bug.cgi?id=70834

Reviewed by Antonio Gomes.

Currently build-webkit --clean both cleans the build directory and builds WebKit for
CMake-based ports. Instead, build-webkit --clean should only clean up the build directory
as per its description in the usage message of build-webkit.

  • Scripts/webkitdirs.pm:

(buildCMakeProjectOrExit):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r98354 r98377  
     12011-10-25  Daniel Bates  <dbates@rim.com>
     2
     3        build-webkit --clean should only clean build directory for CMake-based ports
     4        https://bugs.webkit.org/show_bug.cgi?id=70834
     5
     6        Reviewed by Antonio Gomes.
     7
     8        Currently build-webkit --clean both cleans the build directory and builds WebKit for
     9        CMake-based ports. Instead, build-webkit --clean should only clean up the build directory
     10        as per its description in the usage message of build-webkit.
     11
     12        * Scripts/webkitdirs.pm:
     13        (buildCMakeProjectOrExit):
     14
    1152011-10-25  Anna Cavender  <annacc@chromium.org>
    216
  • trunk/Tools/Scripts/webkitdirs.pm

    r98045 r98377  
    16651665    my ($clean, $port, $prefixPath, $makeArgs, @cmakeArgs) = @_;
    16661666    my $returnCode;
    1667     if ($clean) {
    1668         $returnCode = exitStatus(cleanCMakeGeneratedProject());
    1669         exit($returnCode) if $returnCode;
    1670     }
     1667
     1668    exit(exitStatus(cleanCMakeGeneratedProject())) if $clean;
     1669
    16711670    $returnCode = exitStatus(generateBuildSystemFromCMakeProject($port, $prefixPath, @cmakeArgs));
    16721671    exit($returnCode) if $returnCode;
Note: See TracChangeset for help on using the changeset viewer.