Closed plicease closed 11 years ago
I am now seeing this on my workstation that has the perlbrew perl but plperl is NOT installed. psql seems to crash when the PERL5LIB is set the way MB does it. is psql linked to libperl? That seems weird.
fixed by #7
Environment is:
Problem:
The problem is that plperl is trying to use the perlbrew lib (because of PERL5LIB) which doesn't work with that version of perl.
Part of this has to do with Module::Build because it is putting the x86_64-linux directory into PERL5LIB (prove does NOT do that, that is why it doesn't fail).
I tried wrapping
system
calls withdo { local $ENV{PERL5LIB} =''; system(...) }
but that wasn't quite enough to fix it.This only happens in the test suite, I don't have the same problem when using MBD once it is installed.
I will look at this myself when I get a chance, but I wanted to write down some notes while it was fresh in my mind and I thought opening an issue would be the best way to do this.