in reply to @INC: search sequence of directories

Excerpt from lib:

The parameters to use lib are added to the start of the perl search path. Saying

use lib LIST;
is almost the same as saying
BEGIN { unshift(@INC, LIST) }

Perhaps

BEGIN { push(@INC, LIST) }
does what you want?