From 2c8829f731d9d91ed75d285aa7f88178d439e971 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Mon, 18 Jun 2012 10:32:00 +0200 Subject: [PATCH] Bug 7857 - [SIGNED-OFF] database upgrade fails with plack This patch fixes PERL5LIB path injection to include installer dir which is required Signed-off-by: Jonathan Druart Signed-off-by: Paul Poulain --- installer/install.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/install.pl b/installer/install.pl index 460a0c019a..d9feac4b43 100755 --- a/installer/install.pl +++ b/installer/install.pl @@ -317,7 +317,7 @@ elsif ( $step && $step == 3 ) { my $find = "C4/Context.pm"; my $path = $INC{$find}; $path =~ s/\Q$find\E//; - $ENV{PERL5LIB} = $path; + $ENV{PERL5LIB} = "$path:$path/installer"; warn "# plack? inserted PERL5LIB $ENV{PERL5LIB}\n"; } -- 2.39.2