|
I am using perl 5.8.5 under linux. I have installed few of perl modules (not as root) under ~/perl. Some of the modules were installed in ~/perl/lib/ while the others in ~/perl/lib64/. Why so?
To export them in my scripts I am using the export utility.
export PERL5LIB=/home/deepak/perl/lib/perl5/site_perl
On running script, the modules installed under lib64 can not be exported because of the above reason.
What is the solution to install all the modules in the ~/perl/lib/ directory?
Deepak
|