Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Temp fix supporting loading .pm6 files as source
  • Loading branch information
lizmat committed Aug 1, 2014
1 parent 5e3434b commit 9fd23d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/CompUnitRepo.pm
Expand Up @@ -37,7 +37,8 @@ class CompUnitRepo {
my %chosen;
if $candi {
%chosen<pm> :=
$candi<provides>{$module_name}<pm><file>;
$candi<provides>{$module_name}<pm><file> //
$candi<provides>{$module_name}<pm6><file>;
%chosen<load> :=
$candi<provides>{$module_name}{$*VM.precomp-ext}<file>;
%chosen<key> := %chosen<pm> // %chosen<load>;
Expand Down

0 comments on commit 9fd23d0

Please sign in to comment.