Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit d2841fc

Browse files
committed
perlfaq 5.20180915
prepend "./" to local require calls. Mojolicious ands Dancer2 are not called young anymore. (cherry picked from commit 20f09d5)
1 parent 8c40bbe commit d2841fc

File tree

14 files changed

+34
-21
lines changed

14 files changed

+34
-21
lines changed

Porting/Maintainers.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,7 @@ package Maintainers;
11461146
},
11471147

11481148
'perlfaq' => {
1149-
'DISTRIBUTION' => 'ETHER/perlfaq-5.20180605.tar.gz',
1149+
'DISTRIBUTION' => 'ETHER/perlfaq-5.20180915.tar.gz',
11501150
'FILES' => q[cpan/perlfaq],
11511151
'EXCLUDED' => [
11521152
qw( inc/CreateQuestionList.pm

cpan/perlfaq/lib/perlfaq.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ use strict;
22
use warnings;
33
package perlfaq;
44

5-
our $VERSION = '5.20180605';
5+
our $VERSION = '5.20180915';
66

77
1;

cpan/perlfaq/lib/perlfaq.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ perlfaq - Frequently asked questions about Perl
44

55
=head1 VERSION
66

7-
version 5.20180605
7+
version 5.20180915
88

99
=head1 DESCRIPTION
1010

cpan/perlfaq/lib/perlfaq1.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ perlfaq1 - General Questions About Perl
44

55
=head1 VERSION
66

7-
version 5.20180605
7+
version 5.20180915
88

99
=head1 DESCRIPTION
1010

cpan/perlfaq/lib/perlfaq2.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ perlfaq2 - Obtaining and Learning about Perl
44

55
=head1 VERSION
66

7-
version 5.20180605
7+
version 5.20180915
88

99
=head1 DESCRIPTION
1010

cpan/perlfaq/lib/perlfaq3.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ perlfaq3 - Programming Tools
44

55
=head1 VERSION
66

7-
version 5.20180605
7+
version 5.20180915
88

99
=head1 DESCRIPTION
1010

cpan/perlfaq/lib/perlfaq4.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ perlfaq4 - Data Manipulation
44

55
=head1 VERSION
66

7-
version 5.20180605
7+
version 5.20180915
88

99
=head1 DESCRIPTION
1010

cpan/perlfaq/lib/perlfaq5.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ perlfaq5 - Files and Formats
44

55
=head1 VERSION
66

7-
version 5.20180605
7+
version 5.20180915
88

99
=head1 DESCRIPTION
1010

@@ -1278,7 +1278,7 @@ comes with Perl tries to convert C include files to Perl code, which
12781278
can be C<require>d. FIONREAD ends up defined as a function in the
12791279
I<sys/ioctl.ph> file:
12801280

1281-
require 'sys/ioctl.ph';
1281+
require './sys/ioctl.ph';
12821282

12831283
$size = pack("L", 0);
12841284
ioctl(FH, FIONREAD(), $size) or die "Couldn't call ioctl: $!\n";
@@ -1378,7 +1378,7 @@ used for things that Perl opened itself, even if it was a dup of a
13781378
numeric descriptor as with C<MHCONTEXT> above. But if you really have
13791379
to, you may be able to do this:
13801380

1381-
require 'sys/syscall.ph';
1381+
require './sys/syscall.ph';
13821382
my $rc = syscall(SYS_close(), $fd + 0); # must force numeric
13831383
die "can't sysclose $fd: $!" unless $rc == -1;
13841384

cpan/perlfaq/lib/perlfaq6.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ perlfaq6 - Regular Expressions
44

55
=head1 VERSION
66

7-
version 5.20180605
7+
version 5.20180915
88

99
=head1 DESCRIPTION
1010

cpan/perlfaq/lib/perlfaq7.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ perlfaq7 - General Perl Language Issues
44

55
=head1 VERSION
66

7-
version 5.20180605
7+
version 5.20180915
88

99
=head1 DESCRIPTION
1010

0 commit comments

Comments
 (0)