diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-04-30 17:12:04 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-04-30 17:12:04 +0200 |
commit | 8e899a8e992ac37b2c66da26c1023b7c4aa6890d (patch) | |
tree | f81efd0291126ee45d291c81299720281c13c7f5 /t/Support | |
parent | a75e0696043ffc12529cb8c8592906dd2a2952ec (diff) | |
download | bugs-8e899a8e992ac37b2c66da26c1023b7c4aa6890d.tar bugs-8e899a8e992ac37b2c66da26c1023b7c4aa6890d.tar.gz bugs-8e899a8e992ac37b2c66da26c1023b7c4aa6890d.tar.bz2 bugs-8e899a8e992ac37b2c66da26c1023b7c4aa6890d.tar.xz bugs-8e899a8e992ac37b2c66da26c1023b7c4aa6890d.zip |
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.pm | 4 |
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" } |