Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't use rakudo internal subs
  • Loading branch information
lizmat committed May 4, 2015
1 parent c4292b5 commit 093878c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Inline/Perl5.pm6
Expand Up @@ -17,7 +17,7 @@ sub native(Sub $sub) {
state Str $path;
unless $path {
for @*INC {
my $cur = $_ ~~ Str ?? INCLUDE-SPEC2CUR($_) !! $_;
my $cur = $_ ~~ Str ?? CompUnitRepo.new($_) !! $_;
if my @files = ($cur.files($base) || $cur.files("blib/$base")) {
my $files = @files[0]<files>;
my $tmp = $files{$base} || $files{"blib/$base"};
Expand Down

0 comments on commit 093878c

Please sign in to comment.