From: Michael P. <mic...@we...> - 2003-12-16 08:48:07
How can I do a user installation, I'm not a root on a linux computer
I try
perl Makefile.PL -prefix=/home/preuhs/log4perl
and I get this warning
'-PREFIX' is not a known MakeMaker parameter name.
Writing Makefile for Log::Log4perl
From: Mike S. <msc...@ao...> - 2003-12-16 15:56:28
Michael Preuhs wrote on 12/16/2003, 12:47 AM:
> How can I do a user installation, I'm not a root on a linux computer
> I try
> perl Makefile.PL -prefix=/home/preuhs/log4perl
> and I get this warning
> '-PREFIX' is not a known MakeMaker parameter name.
Use
perl Makefile.PL LIB=/home/preuhs/log4perl
to install and
use lib "/home/preuhs/log4perl";
in your script. More on this in
http://www.linux-magazin.de/Artikel/ausgabe/1999/11/Local/local.html
--
-- Mike
Mike Schilli
m...@pe...