in reply to Re^4: Is ActivePerl repositories go free again?
in thread Is ActivePerl repositories go free again?

You can even place your siteconfig.pm in a custom directory (or just link it thereto), e.g. X:\myconfig\perl and set PERL5OPT to -IX:\myconfig\perl -Msiteconfig, so you don't have to mess with installation paths at all.

On my system (Linux):

# file /tmp/perl/siteconfig.pm print "loaded " . __FILE__ . " from $INC[0]\n"; shift @INC; # done with files in /tmp/perl 1;
qwurx [shmem] ~> env PERL5OPT='-I/tmp/perl -Msiteconfig' perl -e 1 loaded /tmp/perl/siteconfig.pm from /tmp/perl

The shift @INC restores the original @INC perl lib search path array. Comment it out if that config directory contains more of your custom modules which should be found first. This is all in perlrun, which is worth reading thoroughly.

perl -le'print map{pack c,($-++?1:13)+ord}split//,ESEL'

Replies are listed 'Best First'.
Re^6: Is ActivePerl repositories go free again?
by exilepanda (Friar) on May 07, 2017 at 04:16 UTC
    It worked! Both way worked! Thank you soooooo much!! Now I can seriously consider to leave AS Perl! =D