From: David Lawrence Date: Fri, 2 May 2014 20:33:08 +0000 (+0000) Subject: Bug 995209 - Create a Build.PL script using Module::Build for testing/installing... X-Git-Tag: bugzilla-4.4.5~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a73720732fddd6ba1f4945c65409f0bbb6bf039;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);