Ask a Question related to PERL Modules, Design and Development.
-
ypetinot@gmail.com #1
lib/$archname not included automatically on RedHat box
Hi,
I am installing an architecture dependent module on a RedHat box. This
module has a Makefile.PL based on MakeMaker and the install sequence:
perl Makefile.PL LIB=/home/foo/lib/
make
make test
make install
completes without any complaint. Note that the make test is extensively
testing the module and everything looks ok.
Now when I run a final check:
perl -I/home/foo/lib -e "use MyModule;"
i get the following error message:
"Can't locate loadable object for module MyModule in @INC ...."
However if I run:
perl -I /home/foo/lib/i386-linux-thread-multi/ -e "use MyModule;"
everything works just fine
My understanding is that perl should automatically be looking into
"lib/$archname" if "lib" is in the @INC. The installation process
described above works just fine on the Fedora / Gentoo boxes I've been
using thus far ... so I'm wondering what is different with the RedHat
environment.
thanks for reading,
-y
ypetinot@gmail.com Guest
-
Nothing Was Specified to be included in the library
I am getting that error when I try to compile my project. The library it is referring to is FlexLib. I have tried everything I can think of but... -
1 px gap below my included tables
This could really fit in a few areas, but I decided to post it in here. I created this website http://h2mp.com as you can see, right under the... -
include_once() - always included?
Hi All, Always looking for efficiency, consider the following code: <?php function one($arg){ if ($arg == 1){ include_once(...); do some... -
no error in included files
Hi people. The problem is pretty simple. If I include a file <? include 'libs.php'; ?> and this file contains an error (a missing ;), my... -
what are included in metacharacters for regex?
are those included in metacharacters? anyone got a full list of them? ? \ " can anyone give some example of s/// using \Q\E and without using...



Reply With Quote

