On Tue, 2008-30-12 at 08:44 -0500, Guy Hulbert wrote:
>  1. Scripts "use lib 'lib';" so you will need to modify them on
> install.

Minor correction.

This is only a problem if you don't use the standard library paths or
you are paranoid (like me ;-).

Unless your libraries are at the beginning of @INC -- usually
under /usr/local/ then it is possible to break things and on debian, it
is possible for anyone in the 'staff' group to put things there.

So I find it useful to change:
        use lib 'lib';
to
        use lib '/my/lib/path';
on install, which prevents this.

-- 
--gh


Reply via email to