Ignore:
Timestamp:
2013-10-31T11:34:01+13:00 (10 years ago)
Author:
kjdon
Message:

changed some util:: to FIleUtils:: methods to avoid warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/lucenebuildproc.pm

    r28035 r28566  
    3838
    3939use IncrementalBuildUtils;
     40use FileUtils;
    4041
    4142sub BEGIN {
     
    626627    if ($edit_mode eq "delete") {
    627628    # if we are deleting the doc, then also delete the lucene text  version
    628     my $assoc_dir = &util::filename_cat($self->{'build_dir'},"text", $archivedir);
     629    my $assoc_dir = &FileUtils::filenameConcatenate($self->{'build_dir'},"text", $archivedir);
    629630    if (-d $assoc_dir) {
    630         &util::rm_r($assoc_dir);
     631        &FileUtils::removeFilesRecursive($assoc_dir);
    631632    }
    632633    }
Note: See TracChangeset for help on using the changeset viewer.