Ignore:
Timestamp:
2009-05-27T14:22:29+12:00 (15 years ago)
Author:
ak19
Message:

The full and incremental versions of import, build and rebuild now launch the local Windows perl executable with quotes around its path (in order to preserve any spaces in the path to the Perl exec.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/bin/script/incremental-rebuild.pl

    r19410 r19620  
    6868    if($ENV{'GSDLOS'} =~ m/windows/) {
    6969    if($ENV{'PERLPATH'}) {
    70         $launch_cmd = "$ENV{'PERLPATH'}\\Perl.exe -S ";
     70        # need to ensure that the path to perl is quoted (in case there's spaces in it)
     71        $launch_cmd = "\"$ENV{'PERLPATH'}\\Perl.exe\" -S ";
    7172    } else {
    7273        $launch_cmd = "perl -S ";
Note: See TracChangeset for help on using the changeset viewer.