Build.pm (Module-Build-0.4231) | : | Build.pm (Module-Build-0.4232) | ||
---|---|---|---|---|
skipping to change at line 20 | skipping to change at line 20 | |||
use strict; | use strict; | |||
use warnings; | use warnings; | |||
use File::Spec (); | use File::Spec (); | |||
use File::Path (); | use File::Path (); | |||
use File::Basename (); | use File::Basename (); | |||
use Perl::OSType (); | use Perl::OSType (); | |||
use Module::Build::Base; | use Module::Build::Base; | |||
our @ISA = qw(Module::Build::Base); | our @ISA = qw(Module::Build::Base); | |||
our $VERSION = '0.4231'; | our $VERSION = '0.4232'; | |||
$VERSION = eval $VERSION; | $VERSION = eval $VERSION; | |||
# Inserts the given module into the @ISA hierarchy between | # Inserts the given module into the @ISA hierarchy between | |||
# Module::Build and its immediate parent | # Module::Build and its immediate parent | |||
sub _interpose_module { | sub _interpose_module { | |||
my ($self, $mod) = @_; | my ($self, $mod) = @_; | |||
eval "use $mod"; | eval "use $mod"; | |||
die $@ if $@; | die $@ if $@; | |||
no strict 'refs'; | no strict 'refs'; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |