diff options
author | Gervase Markham <gerv@gerv.net> | 2015-08-04 16:14:02 +0200 |
---|---|---|
committer | Gervase Markham <gerv@gerv.net> | 2015-08-04 16:14:02 +0200 |
commit | 4b29b9f756aebf5c92110fe81261e9b81290e4c7 (patch) | |
tree | 0b01349b44c968c0744ac1fdd5bddaa6b1abe367 /Bugzilla/Install | |
parent | 47ff0d8b2cae5f1b8b193ec8c57f4786fcb4e3ce (diff) | |
download | bugzilla-4b29b9f756aebf5c92110fe81261e9b81290e4c7.tar.gz bugzilla-4b29b9f756aebf5c92110fe81261e9b81290e4c7.tar.xz |
Bug 1189737 - add File::Which to optional module requirements for building documentation. r=LpSolit
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 9213d5058..d9fdc0f9e 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -452,7 +452,13 @@ sub OPTIONAL_MODULES { module => 'File::Copy::Recursive', version => 0, feature => ['documentation'], - } + }, + { + package => 'File-Which', + module => 'File::Which', + version => 0, + feature => ['documentation'], + }, ); my $extra_modules = _get_extension_requirements('OPTIONAL_MODULES'); |