From: David Lawrence Date: Fri, 2 May 2014 20:16:57 +0000 (+0000) Subject: Bug 995209 - Create a Build.PL script using Module::Build for testing/installing... X-Git-Tag: bugzilla-4.5.5~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e18b44ee2dc59bf5b0816fd2a26a90b81057384;p=thirdparty%2Fbugzilla.git Bug 995209 - Create a Build.PL script using Module::Build for testing/installing/packaging of Bugzilla code - Fixed incorrect package name Apache-SizeLimit --- diff --git a/Build.PL b/Build.PL index a69f990204..024a560248 100644 --- a/Build.PL +++ b/Build.PL @@ -33,7 +33,7 @@ sub build_requires { sub recommends { my $recommends = OPTIONAL_MODULES(); - my @blacklist = ('Apache2-SizeLimit', 'mod_perl'); # Does not compile properly on Travis + my @blacklist = ('Apache-SizeLimit', 'mod_perl'); # Does not compile properly on Travis my $hrecommends = {}; foreach my $module (@$recommends) { next if grep($_ eq $module->{package}, @blacklist);