Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2013-11-11 13:28:27 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-11-11 13:28:27 +0400
commit4250ebf64465cbdc72e7fafb65c7f766f9a4d96a (patch)
treecaba355d1221f81687df2072519ef1f346856216 /Build.PL
parent6cc976fa025e4e44d2552b1de16464b84a75ad0e (diff)
Missing line in Build.PL
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL1
1 files changed, 1 insertions, 0 deletions
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";