in reply to Appending rather than prepending in "use lib"

Instead of lib, you can try to push onto @INC. Does this work for you?
use strict; use warnings; BEGIN { push @INC, '/path/foo' }

Replies are listed 'Best First'.
Re^2: Appending rather than prepending in "use lib"
by beermad (Novice) on Oct 31, 2010 at 15:14 UTC
    Works a treat. Many thanks.