From fd98ed743453e5077a306179f99b9f09773c339d Mon Sep 17 00:00:00 2001 From: Mason James Date: Tue, 26 Mar 2013 19:48:03 +1300 Subject: [PATCH] [SIGNED-OFF] Bug 9926 - Missing perl modules in Koha Signed-off-by: Bernardo Gonzalez Kriegel Coment: Owen is right, no commit message, no test plan. Please, don't forget. No errors. Test 1) before applying, koha_perl_deps.pl -a do not list File::Slurp as requirement 2) after applying patch, now it list File::Slurp as requirement. --- C4/Installer/PerlDependencies.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index 535a377..09c9908 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -674,6 +674,11 @@ our $PERL_DEPS = { 'required' => '0', 'min_ver' => '3.9', }, + 'File::Slurp' => { + 'usage' => 'core', + 'required' => '1', + 'min_ver' => '9999.13', + }, }; 1; -- 1.7.9.5