diff --git a/Expat/Makefile.PL b/Expat/Makefile.PL index 8603c62..1ac1a70 100644 --- a/Expat/Makefile.PL +++ b/Expat/Makefile.PL @@ -1,3 +1,5 @@ +use strict; +use warnings; use ExtUtils::MakeMaker; use Config; use lib '../inc'; diff --git a/Makefile.PL b/Makefile.PL index 68aca7a..dcbcebe 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,6 @@ use 5.008; #Devel::CheckLib +use strict; +use warnings; use ExtUtils::MakeMaker; use lib './inc'; use Devel::CheckLib; @@ -8,8 +10,8 @@ install_share dist => 'share'; use Config; use File::Spec; -$expat_libpath = $ENV{EXPATLIBPATH} || ''; -$expat_incpath = $ENV{EXPATINCPATH} || ''; +my $expat_libpath = $ENV{EXPATLIBPATH} || ''; +my $expat_incpath = $ENV{EXPATINCPATH} || ''; my @replacement_args;