On Tue, 30 May 2006, Cai, Lucy (L.) wrote:
> When I run the command, I got the following message:
>
> [EMAIL PROTECTED]:~/test_ooo/vobs/na_mscs_12836sas_deploy> sudo -u prxpccsv
> /ccstore
> /fmcc/triggers/ApplyVobTriggers.pl
> Password:
> Empty compile time value given to use lib at
> /ccstore/
>
> How can I add a path /ccstore/fmcc/triggers/ into @INC path?
>
There are at least two ways I know of. I'd generally use the first one
unless package lib is unavailable on your machine.
use lib '/ccstore/fmcc/triggers/';
--OR--
BEGIN
{
push(@INC,'/ccstore/fmcc/triggers/');
}
__
When I run the command, I got the following message:
[EMAIL PROTECTED]:~/test_ooo/vobs/na_mscs_12836sas_deploy> sudo -u prxpccsv
/ccstore
/fmcc/triggers/ApplyVobTriggers.pl
Password:
Empty compile time value given to use lib at
/ccstore/fmcc/triggers/ApplyVobTrig
gers.pl line 25
Can't locate Trigg