projects
/
p5sagit/Sub-Exporter-Progressive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
35a1e2d
)
5.6 compat
Peter Rabbitson [Tue, 12 Mar 2013 22:51:29 +0000 (23:51 +0100)]
Makefile.PL
patch
|
blob
|
blame
|
history
t/tags.t
patch
|
blob
|
blame
|
history
diff --git
a/Makefile.PL
b/Makefile.PL
index
65e5fd1
..
2c0f4f2
100644
(file)
--- a/
Makefile.PL
+++ b/
Makefile.PL
@@
-1,6
+1,6
@@
use strict;
use warnings FATAL => 'all';
-use 5.008001;
+use 5.006;
use ExtUtils::MakeMaker;
(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
diff --git
a/t/tags.t
b/t/tags.t
index
5af34c6
..
85a31b1
100644
(file)
--- a/
t/tags.t
+++ b/
t/tags.t
@@
-25,11
+25,10
@@
BEGIN {
bb => [qw/ bar baz /],
},
};
- use constant {
- foo => 1,
- bar => 2,
- baz => 3,
- };
+ use constant foo => 1;
+ use constant bar => 2;
+ use constant baz => 3;
+
$INC{'Local/Exporter.pm'} = __FILE__;
};