Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make configure.pl6 compatible with rakudo > 393afcf9 2016-12-24
The argument to Distribution::Path's constructor was renamed, so we now
have to pass the old and the new name to stay compatible with all Perl 6
versions.
  • Loading branch information
niner committed Jan 17, 2017
1 parent 81135cf commit a0e211f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.pl6
Expand Up @@ -41,7 +41,7 @@ sub install() {
).first(*.can-install)
or die "Cannot find a repository to install to";
say "Installing into $repo";
my $dist = Distribution::Path.new($*CWD, :file('META.info'.IO));
my $dist = Distribution::Path.new($*CWD, :file('META.info'.IO), :meta-file('META.info'.IO));

# workaround for missing proper handling of libraries in Distribution::Path
my $p5helper = p5helper;
Expand Down

0 comments on commit a0e211f

Please sign in to comment.