From 147385203c05607bc4452c74e0732f1b74005eb7 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Mon, 26 May 2014 12:50:59 +0200 Subject: [PATCH] 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 --- Build.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build.PL b/Build.PL index f414a9fd..5c650ce7 100644 --- a/Build.PL +++ b/Build.PL @@ -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"; }