in reply to Changing @INC after moving Perl

Wouldn't you simply change the environment settings to reflect the change? Otherwise, you could always add 'path' strings to the @INC array just as shown here:
#!/usr/local/bin/perl use lib qw( /lib/path/one /lib/path/two ); # rest of the code here...


_____________________
# Under Construction