Changeset 4597 for trunk/gli


Ignore:
Timestamp:
2003-06-12T12:39:38+12:00 (21 years ago)
Author:
jmt12
Message:

2030127: ClassifierManager was incorrectly adding an extra 'Perl.exe' to the end of the first argument to the Process. This is no longer necessary the perl path is corrected during Gatherer initialization.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/ClassifierManager.java

    r4595 r4597  
    256256        if(Utility.isWindows()) {
    257257        args = new String[4];
    258         if(Gatherer.config.perl_path != null) {
    259             args[0] = gatherer.config.perl_path + "Perl.exe";
     258        if(gatherer.config.perl_path != null) {
     259            args[0] = gatherer.config.perl_path;
    260260        }
    261261        else {
Note: See TracChangeset for help on using the changeset viewer.