[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cobalt-users] "You need at least version 0.8 of the File::Spec module!" ...where can I get it?



Hi all,
I'm just starting to use this how-to to install Spammassassin on my RaQ3.

But when I run the command "(perl ./Makefile.PL make;make test;make install)" (see below) I get an error message saying: "You need at least version 0.8 of the File::Spec module!"

All other operations run smoothly.

Any help would very appreciated.

tony

=================
#ssh into raq
su -
mkdir /tmp/spamassassin
cd /tmp/spamassin
wget http://spamassassin.taint.org/released/Mail-SpamAssassin-2.31.tar.gz

wget http://www.cpan.org/modules/by-module/Pod/podlators-1.22.tar.gz

wget http://www.cpan.org/authors/id/DEWEG/Time-HiRes-01.20.tar.gz

wget http://www.cpan.org/modules/by-module/Pod/PodParser-1.18.tar.gz

tar -xzvf Mail-SpamAssassin-2.31.tar.gz
tar -xzvf PodParser-1.18.tar.gz
tar -xzvf Time-HiRes-01.20.tar.gz
tar -xzvf podlators-1.22.tar.gz

cd PodParser-1.18
====
(perl ./Makefile.PL make;make test;make install)
====
cd ../podlators-1.22
(perl ./Makefile.PL make;make install)
cd ../Time-HiRes-01.20
(perl ./Makefile.PL make;make test;make install)
cd ../Mail-SpamAssassin-2.31
(perl ./Makefile.PL make;make test;make install UNINST=1)
cd /tmp
rm -r spamassassin
=====================