in reply to PERL5LIB mystery

See perlrun on PERL5LIB:

If PERL5LIB is not defined, PERLLIB is used. Directories are separated (like in PATH) by a colon on unixish platforms and by a semicolon on Windows (the proper path separator being given by the command perl -V:path_sep).

The list of paths is not a whitespace delimited list, but (on Windows) a semicolon-delimited list, like $ENV{PATH}.

Replies are listed 'Best First'.
Re^2: PERL5LIB mystery
by Anonymous Monk on Mar 04, 2009 at 17:48 UTC

    That was it. I switched the spaces to semicolons, and it works great.

    Thanks a lot for the help.