Index: trunk/psconfig/pscheckperl
===================================================================
--- trunk/psconfig/pscheckperl	(revision 21932)
+++ trunk/psconfig/pscheckperl	(revision 24550)
@@ -78,10 +78,14 @@
     if ($modver eq "") { $modver = 0; } 
     system ("pscheckmods $module $modver");
-    if ($? == 0) { 
+    if (($? == 0) and not defined $force{$module} and not defined $force{'all'}) { 
 	# print "$module: found\n";
 	next; 
     }
 
-    print "$module: missing\n";
+    if (defined $force{$module}) {
+	print "$module: force\n";
+    } else {
+	print "$module: missing\n";
+    }
     unless ($build or defined $force{$module} or defined $force{'all'}) { 
 	$Nmissing ++;
