Changeset 4598 for trunk


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

2030127: PlugInManager 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/PlugInManager.java

    r4581 r4598  
    169169        args = new String[4];
    170170        if(gatherer.config.perl_path != null) {
    171             args[0] = gatherer.config.perl_path + "Perl.exe";
     171            args[0] = gatherer.config.perl_path;
    172172        }
    173173        else {
Note: See TracChangeset for help on using the changeset viewer.