aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-05-02 20:34:46 +0000
committerDavid Lawrence <dkl@mozilla.com>2014-05-02 20:34:46 +0000
commit269745a0f0fc86c9d498ab6d8aef17ce4b8374eb (patch)
treeb1d1c0ad8a1fc55792df184b0bcc70dd1902b7b9
parentBug 983275 - Switch Bugzilla's CI testing from Tinderbox to travis-ci (diff)
downloadbugzilla-269745a0f0fc86c9d498ab6d8aef17ce4b8374eb.tar.gz
bugzilla-269745a0f0fc86c9d498ab6d8aef17ce4b8374eb.tar.bz2
bugzilla-269745a0f0fc86c9d498ab6d8aef17ce4b8374eb.zip
Bug 995209 - Create a Build.PL script using Module::Build for testing/installing/packaging of Bugzilla code
- Fixed incorrect package name Apache-SizeLimit
-rw-r--r--Build.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build.PL b/Build.PL
index a69f99020..024a56024 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);