diff options
author | David Lawrence <dkl@mozilla.com> | 2014-05-02 20:34:46 +0000 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2014-05-02 20:34:46 +0000 |
commit | 269745a0f0fc86c9d498ab6d8aef17ce4b8374eb (patch) | |
tree | b1d1c0ad8a1fc55792df184b0bcc70dd1902b7b9 | |
parent | Bug 983275 - Switch Bugzilla's CI testing from Tinderbox to travis-ci (diff) | |
download | bugzilla-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.PL | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |