Re: external library

2004-10-27 Thread Sisyphus
[EMAIL PROTECTED] wrote: We have a centrally located perl directory. I want to have a module of utility objects I use frequently stored somewhere else that I can reference. Currently I use something like this: BEGIN { push (@INC,v:\\utilities\\perlutil); }

RE: external library

2004-10-27 Thread Anderson, Mark (Service Delivery)
Or you can simply: use lib 'v:/utilities/perlutil'; use utils; This should work just as well with an ENV var representing your list of extra INC dirs, too. Kind regards, Mark Anderson Service Improvement Project Ground Floor, 34 Fettes Row Edinburgh, EH3 6UY Tel: 07808 826 063 -Original

Re: external library

2004-10-26 Thread $Bill Luebkert
[EMAIL PROTECTED] wrote: We have a centrally located perl directory. I want to have a module of utility objects I use frequently stored somewhere else that I can reference. Currently I use something like this: BEGIN { push (@INC,v:\\utilities\\perlutil);