From: Dylan William Hardison Date: Wed, 27 Sep 2017 13:06:11 +0000 (-0400) Subject: no bug - add dependencies for mozreview/ubuntu X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4497b6cad46cb53f96290ccd62c9dd23742077ef;p=thirdparty%2Fbugzilla.git no bug - add dependencies for mozreview/ubuntu --- diff --git a/Makefile.PL b/Makefile.PL index 33319ce92..fc42b32da 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -84,6 +84,18 @@ if ( $^O eq 'MSWin32' ) { $requires{'DateTime::TimeZone::Local::Win32'} = '1.64'; } +# for some reason, we need these on ubuntu. +if ($^O eq 'linux' && -f '/etc/debian_version') { + my @extra = qw( + Linux::Pid + Test::Pod::Coverage + Pod::Coverage::TrustPod + Test::CPAN::Meta + Test::Pod + ); + $requires{$_} = 0 for @extra; +} + my %optional_features = ( smtp_auth => { prereqs => { runtime => { requires => { 'Authen::SASL' => 0 } } },