Rename Modules and Modules.pl as Maintainers and
[p5sagit/p5-mst-13.2.git] / Porting / Maintainers
similarity index 93%
rename from Porting/Modules
rename to Porting/Maintainers
index 5f7dff5..10d124e 100644 (file)
@@ -1,13 +1,13 @@
 #!/usr/bin/perl -w
 
 #
-# Modules - show information about modules and their maintainers
+# Maintainers - show information about maintainers
 #
 
 use strict;
 
 use FindBin qw($Bin);
-require "$Bin/Modules.pl";
+require "$Bin/Maintainers.pl";
 use vars qw(%Modules %Maintainers);
 
 use Getopt::Long;
@@ -20,8 +20,9 @@ $0 --maintainer M     list all maintainers matching M
 $0 --module M          list all modules matching M
 $0 --files             list all files of the module
 Matching is case-ignoring regexp, author matching is both by
-the short id and by the full name and email.
-$0 file ...            list the module and maintainer
+the short id and by the full name and email.  A "module" may
+not be just a module, it may be a file or files or a subdirectory.
+$0 file ...            list the modules and maintainers of the files
 __EOF__
     exit(0);
 }