Changeset 20681


Ignore:
Timestamp:
2009-09-23T13:35:00+12:00 (15 years ago)
Author:
kjdon
Message:

only check incremental against is_incremental_capable. keepold may be used to do each building pass separately, which is totally independent of incremental building

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/perllib/basebuilder.pm

    r20647 r20681  
    169169
    170170    # check incremental against whether builder can cope or not.
    171     if (($self->{'keepold'} || $self->{'incremental'}) && !$self->is_incremental_capable()) {
     171    if ($self->{'incremental'} && !$self->is_incremental_capable()) {
    172172    print $outhandle "WARNING: The indexer used is not capable of incremental building. Reverting to -removeold\n";
    173173    $self->{'keepold'} = 0;
Note: See TracChangeset for help on using the changeset viewer.