summaryrefslogtreecommitdiff
path: root/lib/Automake/Wrap.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Automake/Wrap.pm')
-rw-r--r--lib/Automake/Wrap.pm10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/Automake/Wrap.pm b/lib/Automake/Wrap.pm
index 0640cc9a2..c821b8b99 100644
--- a/lib/Automake/Wrap.pm
+++ b/lib/Automake/Wrap.pm
@@ -17,11 +17,13 @@ package Automake::Wrap;
use 5.006;
use strict;
+use warnings FATAL => 'all';
-require Exporter;
-use vars '@ISA', '@EXPORT_OK';
-@ISA = qw/Exporter/;
-@EXPORT_OK = qw/wrap makefile_wrap/;
+use Exporter;
+
+use vars qw (@EXPORT_OK @ISA);
+@ISA = qw (Exporter);
+@EXPORT_OK = qw (wrap makefile_wrap);
=head1 NAME