> >This appends the new library path to @INC. The usual method however is to >prepend it to @INC, so the added paths are searched first. That would lead to > > unshift @INC, 'Put path to directory here'; >
Someone (including me) has mentioned many times,this couldn't work.
You should:
BEGIN {
unshift @INC, 'Put path to directory here';
}
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/
