in reply to Installing a Module without its own makfile

Have you placed the file FormValidator.pm in the directory path/to/my/perl/modules/HTML? The :: stands for a directory separator.

Hope this helps,

Jeroen

  • Comment on Re: Installing a Module without its own makfile

Replies are listed 'Best First'.
Re: Re: Installing a Module without its own makfile
by sz (Friar) on Mar 22, 2001 at 21:50 UTC
    Jeoren,

    See, I told you it should be simple. :-)

    I assumed that the path fed to "use lib" could point to the parent directory under which the rest of my modules are installed. Once I changed it to the parent of the HTML directory (another level down), it worked as you described.

    Thanks!