Skip to content

Commit 01b24a5

Browse files
maukekhwilliamson
authored andcommitted
Makefile.PL: add missing warnings prereq
`strict` was listed, but `warnings` was missing. In any case, this module doesn't run on any pre-2000 perl, so remove the (perl4 compatibility) `require 5;` line.
1 parent 9ad7d93 commit 01b24a5

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Makefile.PL

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
# This -*- perl -*- script writes the Makefile for Pod::Simple
22
#
3-
# Time-stamp: "2004-05-24 00:21:20 ADT"
4-
#
5-
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
6-
# the contents of the Makefile that is written.
7-
#
8-
9-
require 5;
103

114
use strict;
125
use ExtUtils::MakeMaker;
@@ -32,6 +25,7 @@ my %WriteMakefileArgs = (
3225
'integer' => 0,
3326
'overload' => 0,
3427
'strict' => 0,
28+
'warnings' => 0,
3529
},
3630

3731
INSTALLDIRS => $] >= 5.009003 && $] <= 5.011000 ? 'perl' : 'site',

0 commit comments

Comments
 (0)