IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 24550


Ignore:
Timestamp:
Jun 25, 2009, 1:22:34 PM (17 years ago)
Author:
eugene
Message:

allow force to build a module that is not missing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psconfig/pscheckperl

    r21932 r24550  
    7878    if ($modver eq "") { $modver = 0; }
    7979    system ("pscheckmods $module $modver");
    80     if ($? == 0) {
     80    if (($? == 0) and not defined $force{$module} and not defined $force{'all'}) {
    8181        # print "$module: found\n";
    8282        next;
    8383    }
    8484
    85     print "$module: missing\n";
     85    if (defined $force{$module}) {
     86        print "$module: force\n";
     87    } else {
     88        print "$module: missing\n";
     89    }
    8690    unless ($build or defined $force{$module} or defined $force{'all'}) {
    8791        $Nmissing ++;
Note: See TracChangeset for help on using the changeset viewer.