I'm installing Bugzilla on a new Ubuntu server, and ./checksetup.pl finds one more library I need to install.

So it tells me to run this command:

/usr/bin/perl install-module.pl Math::Random::Secure

When I run it, I get the following error:

ERROR: Using install-module.pl requires that you install "make".

Make is installed (apt-get install make) and I know it's in my $PATH (in /usr/bin/) but I still get that error from install-module.pl.

Do I have to do something special to ensure it has the right path or should the path from my shell be used? Is "make" referring to the make I have installed or could it refer to some perl module instead?

Thanks!

link|improve this question

80% accept rate
feedback

1 Answer

Try to install it with CPAN:

$ perl -MCPAN -e shell
cpan> install Math::Random::Secure
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.