IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13265


Ignore:
Timestamp:
May 4, 2007, 3:08:11 PM (19 years ago)
Author:
eugene
Message:

adding the list of missing modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psconfig/pscheckperl

    r12869 r13265  
    5858
    5959$Nmissing = 0;
     60@missing = ();
    6061foreach $line (@list) {
    6162    chop $line;
     
    7576    if ($check) {
    7677        $Nmissing ++;
     78        push @missing, $module;
    7779        next;
    7880    }
     
    108110if ($check) {
    109111    if ($Nmissing > 0) {
    110         print "$Nmissing perl modules are missing from your system\n";
     112        print "The following $Nmissing perl modules are missing from your system\n";
     113        foreach $name (@missing) {
     114            print "  $name\n";
     115        }
    111116        print "you may install them in your local path by re-running pscheckperl with -build\n";
    112117    } else {
Note: See TracChangeset for help on using the changeset viewer.