G
George Mpouras
When I use CGI::Carp and File::Temp my code is crashing without obvious
reason (Centos 6.5 , Perl 5.10) For a proof of bug you can run
perl -e "use CGI::Carp; use File::Temp"
The only workaround is to "zero" the die using the
local *CORE::GLOBAL::die = sub {};
at several places at /usr/share/perl5/File/Temp.pm
Any better idea ?
reason (Centos 6.5 , Perl 5.10) For a proof of bug you can run
perl -e "use CGI::Carp; use File::Temp"
The only workaround is to "zero" the die using the
local *CORE::GLOBAL::die = sub {};
at several places at /usr/share/perl5/File/Temp.pm
Any better idea ?