Perl Include Directory
For some reason the DB_File module is not working on one of our servers. If you use a full path like:use '/usr/local/lib/perl5/5.6.1/i686-linux/DB_File.pm';
it works, but just:
use DB_File;
It does not find DB_File. Is there any config file I can change so that it looks for DB_File.pm in /usr/local/lib/perl5/5.6.1/i686-linux ?
Thanks

