Index: /branches/eam_branches/ipp-20230313/psconfig/pscheckmods
===================================================================
--- /branches/eam_branches/ipp-20230313/psconfig/pscheckmods	(revision 42757)
+++ /branches/eam_branches/ipp-20230313/psconfig/pscheckmods	(revision 42758)
@@ -3,4 +3,12 @@
 $DEBUG = 0;
 $VERBOSE = 0;
+if (@ARGV > 2 && $ARGV[0] eq "-v") {
+    $VERBOSE = 1;
+    shift @ARGV;
+}
+if (@ARGV > 2 && $ARGV[0] eq "-debug") {
+    $DEBUG = 1;
+    shift @ARGV;
+}
 if (@ARGV > 2 && $ARGV[0] eq "-v") {
     $VERBOSE = 1;
@@ -55,7 +63,8 @@
     my ($realfilename,$result);
   ITER: {
+      my $found = 0;
       foreach $prefix (@INC) {
 	  $realfilename = "$prefix/$filename";
-	  print "real: $realfilename\n" if $DEBUG;
+	  print "try: $realfilename\n" if $DEBUG;
 	  if (-f $realfilename) {
 	      $INC{$filename} = $realfilename;
@@ -63,8 +72,9 @@
 	      $result = do $realfilename;
 	      print "result: $result\n" if $DEBUG;
-	      last ITER;
+	      if (! $DEBUG) { last ITER; }
+	      $found = 1;
 	  }
       }
-      die "Can't find $filename in \@INC";
+      if (!$found) { die "Can't find $filename in \@INC"; }
     }
     if ($@) {
Index: /branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-gentoo.dist
===================================================================
--- /branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-gentoo.dist	(revision 42757)
+++ /branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-gentoo.dist	(revision 42758)
@@ -64,9 +64,9 @@
   YYYYY  pstamp                 ipp-2-9          -0
   YYYYY  ippTools               ipp-2-9          -0
+  YYYYY  ippconfig              ipp-2-9          -0
   YYYYY  ippScripts             ipp-2-9          -0
   YYYYY  ippTasks               ipp-2-9          -0
 # YNYYY  ippToPsps              ipp-2-9          -0 : moved to $svn/psps
           
-  YYYYY  ippconfig              ipp-2-9          -0
   YNYYN  psconfig               ipp-2-9          -0
   YNYYN  ippMonitor             ipp-2-9          -0
Index: /branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-ubuntu.dist
===================================================================
--- /branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-ubuntu.dist	(revision 42757)
+++ /branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-ubuntu.dist	(revision 42758)
@@ -66,9 +66,9 @@
   YYYYY  pstamp                 ipp-2-9          -0
   YYYYY  ippTools               ipp-2-9          -0
+  YYYYY  ippconfig              ipp-2-9          -0
   YYYYY  ippScripts             ipp-2-9          -0
   YYYYY  ippTasks               ipp-2-9          -0
 # YNYYY  ippToPsps              ipp-2-9          -0 : moved to $svn/psps
           
-  YYYYY  ippconfig              ipp-2-9          -0
   YNYYN  psconfig               ipp-2-9          -0
   YNYYN  ippMonitor             ipp-2-9          -0
Index: /branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-ubuntu.perl
===================================================================
--- /branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-ubuntu.perl	(revision 42757)
+++ /branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-ubuntu.perl	(revision 42758)
@@ -34,4 +34,5 @@
   01  Class::Prototyped             Class-Prototyped-1.13.tar.gz	     0              NONE      NONE
   01  Class::Singleton              Class-Singleton-1.5.tar.gz		     0              NONE      NONE
+  01  Encode::Locale                Encode-Locale-1.05.tar.gz		     0              NONE      NONE
   01  Data::Dump                    Data-Dump-1.23.tar.gz		     0              NONE      NONE
   01  Data::Validate::Domain        Data-Validate-Domain-0.14.tar.gz	     0              NONE      NONE
