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 | |
by Anonymous Monk on Mar 29, 2011 at 15:39 UTC |