Ignore:
Timestamp:
2001-02-20T14:58:17+13:00 (23 years ago)
Author:
sjboddie
Message:

Changed pdftohtml.pl and gsConvert.pl to reflect the fact that their
respective binary files are now always installed to bin/$GSDLOS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/pdftohtml.pl

    r1997 r2023  
    103103
    104104    # formulate the command
    105     my ($p_home, $pdftohtml);
    106 
    107     if ($ENV{'GSDLOS'} =~ /^windows/i) {
    108     $p_home = &util::filename_cat($ENV{'GSDLHOME'}, "bin", "windows");
    109     $pdftohtml = &util::filename_cat($p_home, "pdftohtml.bin");
    110     }
    111     else  {
    112     $p_home = &util::filename_cat($ENV{'GSDLHOME'}, "packages", "pdftohtml");
    113     $pdftohtml = &util::filename_cat($p_home, "bin", "pdftohtml.bin");
    114     }
     105    my $pdftohtml = &util::filename_cat($ENV{'GSDLHOME'}, "bin",
     106                    $ENV{'GSDLOS'}, "pdftohtml.bin");
    115107    return 0 unless (-e "$pdftohtml");
    116108   
Note: See TracChangeset for help on using the changeset viewer.