David Arnold wrote:
All,
Is this OK?
# File: startup.pl
use lib qw(/home/darnold/modperl/); use lib qw(/usr/local/apache/module/);
Sure but if you "use lib" twice all you need are single quotes instead of qw():
use lib '/home/blah/'; use lib '/usr/local/';
1;
but even better:
use lib qw(/home/blah /usr/local);
1;
HTH
Lee.M - JupiterHost.Net
-- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html