- 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.
# 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;
}
# 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 (
# 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;
}
}
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)__$/;