Ignore:
Timestamp:
2009-05-12T18:31:55+12:00 (15 years ago)
Author:
ak19
Message:

Further modifications to launching perl on windows in the new incremental and full building scripts: Removed the check inside the BEGIN statement that insisted on PERLPATH being defined. Now the code uses PERLPATH for launching Perl on Windows if this is defined, otherwise it refers to just perl (assuming it is on the PATH already).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/bin/script/full-import.pl

    r19409 r19410  
    3333BEGIN {
    3434    die "GSDLOS not set\n" unless defined $ENV{'GSDLOS'};
    35     # for windows, need PERLPATH in order to launch Perl
    36     if($ENV{'GSDLOS'} =~ m/windows/) {
    37     die "PERLPATH, which is required for Windows, is not set.\n" unless defined $ENV{'PERLPATH'};
    38     }
    3935}
    4036
     
    4541my $import_cmd = "import.pl -removeold $quoted_argv";
    4642if($ENV{'GSDLOS'} =~ m/windows/) {
    47     $import_cmd = "$ENV{'PERLPATH'}\\Perl.exe -S $import_cmd";
    48     #$import_cmd = "perl -S $import_cmd";
     43    if($ENV{'PERLPATH'}) {
     44    $import_cmd = "$ENV{'PERLPATH'}\\Perl.exe -S $import_cmd";
     45    } else {
     46    $import_cmd = "perl -S $import_cmd";
     47    }
    4948}
    5049
Note: See TracChangeset for help on using the changeset viewer.