in reply to NetAddr-IP-4.007 compilation in Fedora fails miserably
You don't show us what exactly you are doing, but somehow, you are using Perl to run your Makefile:
Bareword found where operator expected at Makefile line 31
Makefile is a program to be run by the make command and not by Perl. The usual sequence for installing a module in Perl is to do
cpan IP::NetAddr
... or, if you have already downloaded and unpacked the distribution from CPAN yourself:
perl -w Makefile.PL make make test make install
See also the Tutorials section on installing modules.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: NetAddr-IP-4.007 compilation in Fedora fails miserably
by h3x (Acolyte) on Oct 11, 2007 at 07:14 UTC | |
by Corion (Patriarch) on Oct 11, 2007 at 07:43 UTC |