Make XS compilation verbose since most users forget to include the build.log file when reporting issues. This also makes Travis-CI logs more useful

master
Alessandro Ranellucci 2014-05-26 12:50:59 +02:00
parent 2bce8bb745
commit 147385203c
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ EOF
system './xs/Build', 'distclean';
}
}
my $res = system $cpanm, @cpanm_args, '--reinstall', './xs';
my $res = system $cpanm, @cpanm_args, '--reinstall', '--verbose', './xs';
if ($res != 0) {
die "The XS/C++ code failed to compile, aborting\n";
}