- perl: skip new-fangled head[34] while gerenerating deps (#118243).
authorjbj <devnull@localhost>
Thu, 8 Apr 2004 00:03:51 +0000 (00:03 +0000)
committerjbj <devnull@localhost>
Thu, 8 Apr 2004 00:03:51 +0000 (00:03 +0000)
CVS patchset: 7224
CVS date: 2004/04/08 00:03:51

CHANGES
scripts/perl.prov
scripts/perl.req
scripts/perldeps.pl

diff --git a/CHANGES b/CHANGES
index 6e49f2a..176717d 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -12,6 +12,7 @@
        - fix: segfault on --recontext if file_contexts unreadable (#117374).
        - fix: /etc/security/selinux/file_contexts is default path.
        - fix: no transaction lock if --test was specified (#119783).
+       - perl: skip new-fangled head[34] while gerenerating deps.
 
 4.2.2 -> 4.3:
        - upgrade to zlib-1.2.beta7.
index 1bdfa09..c1e0685 100755 (executable)
@@ -94,7 +94,7 @@ sub process_file {
     # properly belongs in the over/back section) but people do not
     # read the perldoc.
 
-    if (m/^=(head1|head2|pod|item)/) {
+    if (m/^=(head[1-4]|pod|item)/) {
       $incomment = 1;
     }
 
@@ -136,9 +136,9 @@ sub process_file {
 
     # here are examples of VERSION lines from the perl distribution
 
-    #FindBin.pm:$VERSION = $VERSION = sprintf("%d.%02d", q$Revision: 1.7 $ =~ /(\d+)\.(\d+)/);
-    #ExtUtils/Install.pm:$VERSION = substr q$Revision: 1.7 $, 10;
-    #CGI/Apache.pm:$VERSION = (qw$Revision: 1.7 $)[1];
+    #FindBin.pm:$VERSION = $VERSION = sprintf("%d.%02d", q$Revision: 1.8 $ =~ /(\d+)\.(\d+)/);
+    #ExtUtils/Install.pm:$VERSION = substr q$Revision: 1.8 $, 10;
+    #CGI/Apache.pm:$VERSION = (qw$Revision: 1.8 $)[1];
     #DynaLoader.pm:$VERSION = $VERSION = "1.03";     # avoid typo warning
 
     if ( 
index 6213bc4..09614fd 100755 (executable)
@@ -96,7 +96,7 @@ sub process_file {
     # properly belongs in the over/back section) but people do not
     # read the perldoc.
 
-    if ( (m/^=(head1|head2|pod|item)/) .. (m/^=(cut)/) ) {
+    if ( (m/^=(head[1-4]|pod|item)/) .. (m/^=(cut)/) ) {
       next;
     }
 
index b488bda..7a4baad 100644 (file)
@@ -171,7 +171,7 @@ sub process_file {
   }
 
   while (<FH>) {
-    next if m(^=(head1|head2|pod|item)) .. m(^=cut);
+    next if m(^=(head[1-4]|pod|item)) .. m(^=cut);
     next if m(^=over) .. m(^=back);
     last if m/^__(DATA|END)__$/;