Skip to content

Commit

Permalink
Hopefully fix make test on Windows
Browse files Browse the repository at this point in the history
The perl6-m.bat in the build directory was missing the --nqp-lib=blib
argument.
  • Loading branch information
niner committed Dec 5, 2016
1 parent 40d80c0 commit 6fafbf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/build/create-moar-runner.pl
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
exit if $toolchain;
$install_to ~= '.bat';
my $fh = open $install_to, :w;
$fh.print(sprintf(qq[@ "%s" --execname="%%~dpf0" --libpath="%s" %s\\%s %%*\n],
$moar, @libpaths.join('" --libpath="'), $p6_mbc_path, $mbc));
$fh.print(sprintf(qq[@ "%s" --execname="%%~dpf0" --libpath="%s" %s\\%s %s%%*\n],
$moar, @libpaths.join('" --libpath="'), $p6_mbc_path, $mbc, $blib));
$fh.close;
}
elsif $toolchain eq 'gdb' {
Expand Down

0 comments on commit 6fafbf6

Please sign in to comment.