summaryrefslogtreecommitdiffstats
path: root/t/Support
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2015-04-30 17:10:08 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2015-04-30 17:10:08 +0200
commit0e68998f22b847d90753daac3808bedc4500cde6 (patch)
treed961161e5ceb10474bca7e733089945618d4121e /t/Support
parent281214d136cfa3ad6dd8e2fa0777b336ca6cdff0 (diff)
downloadbugzilla-0e68998f22b847d90753daac3808bedc4500cde6.tar.gz
bugzilla-0e68998f22b847d90753daac3808bedc4500cde6.tar.xz
Bug 1158563: makedocs.pl is unable to load File::Copy::Recursive installed in bugzilla/lib/
r=dkl a=glob
Diffstat (limited to 't/Support')
-rw-r--r--t/Support/Files.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/Support/Files.pm b/t/Support/Files.pm
index 85fa9f583..f3fae58fc 100644
--- a/t/Support/Files.pm
+++ b/t/Support/Files.pm
@@ -17,8 +17,8 @@ use File::Find;
our @additional_files = ();
our @files = glob('*');
-find(sub { push(@files, $File::Find::name) if $_ =~ /\.pm$/;}, 'Bugzilla');
-push(@files, 'extensions/create.pl');
+find(sub { push(@files, $File::Find::name) if $_ =~ /\.pm$/;}, qw(Bugzilla docs));
+push(@files, 'extensions/create.pl', 'docs/makedocs.pl');
our @extensions =
grep { $_ ne 'extensions/create.pl' && ! -e "$_/disabled" }