The Changes file notes: > PERL5LIB support now properly unshifts paths into @INC rather than push
(added in 1.27) While it now does unshift rather than push (so the entries end up at the front of @INC, not the back) it does so backwards! eg: PerlPassEnv PERL5LIB /dir1:/dir2:/dir3 will end up setting @INC to: /dir3 /dir2 /dir1 <[EMAIL PROTECTED]> (you can see this via Apache::Status)
