in reply to Re^2: Installing binary-dependant module on shared hosting (Time::Piece)
in thread Installing binary-dependant module on shared hosting (Time::Piece)
So the argument to "use lib" should be the directory containing both "lib" and "arch".
update: or maybe you should move the whole "arch" directory into the "lib" dir. I'm not sure.
update 2: after inspecting the code in blib I assume what you actually need to do is:
use lib "/path/to/blib/lib"; use lib "/path/to/blib/arch";
|
|---|