Navigation Menu

Skip to content

Commit

Permalink
Building works now.
Browse files Browse the repository at this point in the history
Just need to handle distdir, then done.
  • Loading branch information
ingydotnet committed Dec 17, 2014
1 parent 33363ac commit a5233cf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/Module/Build/InlineModule.pm
Expand Up @@ -6,15 +6,17 @@ __PACKAGE__->add_property('inline');

use Inline::Module();

use XXX;
use XXX;

sub ACTION_code {
my ($self) = @_;
my $self = shift;
$self->SUPER::ACTION_code(@_);
my $module = $self->{properties}{inline}{module};
print "$module\n";
my @inc = @INC;
local @INC = ('lib', @inc);
eval "require $module; 1" or die $@;
Inline::Module->handle_fixblib;
}

sub ACTION_distdir {
Expand Down

0 comments on commit a5233cf

Please sign in to comment.