Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Expat/Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
use strict;
use warnings;
use ExtUtils::MakeMaker;
use Config;
use lib '../inc';
Expand Down
6 changes: 4 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
use 5.008; #Devel::CheckLib
use strict;
use warnings;
use ExtUtils::MakeMaker;
use lib './inc';
use Devel::CheckLib;
Expand All @@ -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;

Expand Down
Loading