Changeset 13265
- Timestamp:
- May 4, 2007, 3:08:11 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psconfig/pscheckperl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psconfig/pscheckperl
r12869 r13265 58 58 59 59 $Nmissing = 0; 60 @missing = (); 60 61 foreach $line (@list) { 61 62 chop $line; … … 75 76 if ($check) { 76 77 $Nmissing ++; 78 push @missing, $module; 77 79 next; 78 80 } … … 108 110 if ($check) { 109 111 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 } 111 116 print "you may install them in your local path by re-running pscheckperl with -build\n"; 112 117 } else {
Note:
See TracChangeset
for help on using the changeset viewer.
