in reply to Re: Problem undefining a variable in a loop using a module causing a list to not empty after use of a subroutine
in thread Problem undefining a variable in a loop using a module causing a list to not empty after use of a subroutine

Actually, it can't since I am not using the standard module libraries for my really really site specific modules. I am storing them elsewhere. I have gone without the use lib line when using modules in the same directory, and I get all kinds of errors. There is no chance that I can get any provider to add that folder to the module library, as far as I know. And honestly, who would want them other than me?

Have a nice day!
Lady Aleena
  • Comment on Re^2: Problem undefining a variable in a loop using a module causing a list to not empty after use of a subroutine
  • Download Code

Replies are listed 'Best First'.
Re^3: Problem undefining a variable in a loop using a module causing a list to not empty after use of a subroutine
by ikegami (Patriarch) on Apr 07, 2010 at 14:44 UTC

    The module in which you use use lib is in that non-standard location, right? So why do you say you need to tell Perl where to look.

    You just need the use lib in the script. The use lib in the module is redundant.