summaryrefslogtreecommitdiffstats
path: root/Build.PL
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-05-02 22:16:57 +0200
committerDavid Lawrence <dkl@mozilla.com>2014-05-02 22:16:57 +0200
commit0e18b44ee2dc59bf5b0816fd2a26a90b81057384 (patch)
treefd269eac646259b6e6403cbf9fc0208460906ef2 /Build.PL
parentfc76ec4931c9d8e22c3ad4dc9988869a6832d8b1 (diff)
downloadbugzilla-0e18b44ee2dc59bf5b0816fd2a26a90b81057384.tar.gz
bugzilla-0e18b44ee2dc59bf5b0816fd2a26a90b81057384.tar.xz
Bug 995209 - Create a Build.PL script using Module::Build for testing/installing/packaging of Bugzilla code
- Fixed incorrect package name Apache-SizeLimit
Diffstat (limited to 'Build.PL')
-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);