http://qs1969.pair.com?node_id=682165


in reply to Re^3: Installing modules to a private module directory
in thread Installing modules to a private module directory

You might try DBI. That seems to be at least one example case, based on the context given in his blog.

  • Comment on Re^4: Installing modules to a private module directory

Replies are listed 'Best First'.
Re^5: Installing modules to a private module directory
by tinita (Parson) on Apr 22, 2008 at 14:30 UTC
    You might try DBI.
    it works here on my machine:
    $ perl Makefile.PL PREFIX=/tmp/foo LIB=/tmp/foo/lib $ make $ make install $ perl -wle' use lib "/tmp/foo/lib"; use DBI; print $INC{"DBI.pm"}' /tmp/foo/lib/i486-linux-gnu-thread-multi/DBI.pm