in reply to Re: Configuring Perl
in thread Configuring Perl

Thanks for your reply, Corion. Unfortunately I don't seem to have a Configure file. I'm using the system installation of Perl and downloading my own modules. The file README.txt that came with the moudule (MP3-Tag-0.9709) gives the following instructions:
perl Makefile.PL
make
make test
make install   (as root)

Now that I think of it, when I installed modules several years ago, there was a configure step. That seems to be missing now.
klee12

Replies are listed 'Best First'.
Re^3: Configuring Perl
by Corion (Patriarch) on Sep 12, 2007 at 19:34 UTC

    Ah. If you are not (re)configuring and reinstalling Perl but only Perl modules, then it's just:

    perl Makefile.PL PREFIX=/Data/Perl make make test make install # as yourself, not as root, as long as you have write per +missions to /Data/Perl
      Thanks Corion, that's just what I wanted. Evidently Configure was put into Makefile.PL.

      Man, I'm impressed. Get an answer within a few hours. This sure beats support from Microsoft.

      klee12
      Thankz Corion! I was having the same problem without realizing it.

      throop