Re: how to change values of @INC

2004-09-22 Thread Johannes Lichtenberger
Bernd Mueller wrote: I am trying to run a perl script under apache2 and the error_log tells me something about: "Can't locate SiteDefs.pm in @INC (@INC contains: /usr/local/lib/perl5/5.8.5/x86_64-linux etc ...) at /usr/local/ensembl/perl/multi/unisearch line24., referer: http://localhost/ ..

Re: how to change values of @INC

2004-09-22 Thread JupiterHost.Net
Bernd Mueller wrote: Hello, Hello, I am trying to run a perl script under apache2 and the error_log tells me something about: "Can't locate SiteDefs.pm in @INC (@INC contains: /usr/local/lib/perl5/5.8.5/x86_64-linux etc ...) at /usr/local/ensembl/perl/multi/unisearch line24., referer: http:/

RE: how to change values of @INC

2004-09-22 Thread Thomas Bätzler
Bernd Mueller <[EMAIL PROTECTED]> asked: > Would someone be so nice to explain me how i change the > values in @INC, because i know where to find this SiteDefs.pm. You could use the "use lib" pragma, like use lib qw(/path/to/my/modules); HTH, Thomas -- To unsubscribe, e-mail: [EMAIL

RE: how to change values of @INC

2004-09-22 Thread Raymond Raj
you can add new search path using use lib 'path List'; for delete no lib 'path list'; Raymond -Original Message- From: Bernd Mueller [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 22, 2004 8:04 PM To: [EMAIL PROTECTED] Subject: how to change values of @INC Hello, I am tr