Ignore:
Timestamp:
2009-05-12T17:29:56+12:00 (15 years ago)
Author:
ak19
Message:

Getting the incremental build scripts to work on Windows (it already works on the Vista here, but only because .pl files were associated with Perl).

File:
1 edited

Legend:

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

    r18470 r19409  
    3131
    3232
     33BEGIN {
     34    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    }
     39}
     40
    3341use strict;
    3442
    3543my $quoted_argv = join(" ", map { "\"$_\"" } @ARGV);
    3644
    37 
    3845my $import_cmd = "import.pl -removeold $quoted_argv";
     46if($ENV{'GSDLOS'} =~ m/windows/) {
     47    $import_cmd = "$ENV{'PERLPATH'}\\Perl.exe -S $import_cmd";
     48    #$import_cmd = "perl -S $import_cmd";
     49}
    3950
    4051my $import_status = system($import_cmd)/256;
Note: See TracChangeset for help on using the changeset viewer.