in reply to Re^2: Perlfect search can't locate installed module DB_File.pm.
in thread Perlfect search can't locate installed module DB_File.pm.

Either use string eval

if( eval "require $isa" ) {

or block eval (adding ".pm")

eval { require "$isa.pm" } unless ($@) { ... }

(Update: fixed my reply several times... now it should finally be ok :)

Replies are listed 'Best First'.
Re^4: Perlfect search can't locate installed module DB_File.pm.
by Anonymous Monk on Mar 29, 2011 at 15:12 UTC
    Have the same problem, don't understand your solution. this goes where? in perl script trying to load DB_file? what is $isa set to, DB_File? thanks
      No you don't.