From 4250ebf64465cbdc72e7fafb65c7f766f9a4d96a Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Mon, 11 Nov 2013 10:28:27 +0100 Subject: [PATCH] Missing line in Build.PL --- Build.PL | 1 + 1 file changed, 1 insertion(+) diff --git a/Build.PL b/Build.PL index 5a1e0b302..7b4ac81fa 100644 --- a/Build.PL +++ b/Build.PL @@ -134,6 +134,7 @@ if (@missing_prereqs) { printf "The following prerequisites failed to install: %s\n", join(', ', @missing_prereqs); exit 1; } elsif (!$gui) { + eval "use App::Prove; 1" or die "Failed to load App::Prove"; my $res = App::Prove->new->run ? 0 : 1; if ($res == 0) { print "If you also want to use the GUI you can now run `perl Build.PL --gui` to install the required modules.\n";