Index: trunk/psconfig/pscheckperl
===================================================================
--- trunk/psconfig/pscheckperl	(revision 16523)
+++ trunk/psconfig/pscheckperl	(revision 17490)
@@ -5,4 +5,5 @@
 $version = "";
 $build = 0;
+my %force;   # Names of module to force build
 @tARGV = ();
 for (; @ARGV > 0; ) {
@@ -14,4 +15,8 @@
 	$build = 1;
         shift; next;
+    }
+    if ($ARGV[0] eq "-force") {
+	$force{$ARGV[1]} = 1;
+	shift; shift; next;
     }
     if ($ARGV[0] eq "-h")     { &usage (); }
@@ -79,5 +84,5 @@
 
     print "$module: missing\n";
-    if (!$build) { 
+    unless ($build or defined $force{$module} or defined $force{'all'}) { 
 	$Nmissing ++;
 	push @missing, $module;
