Bugzilla install-module.pl无法find“make”,但已安装并在我的path中

我在新的Ubuntu服务器上安装了Bugzilla,而./checksetup.plfind了一个我需要安装的库。

所以它告诉我运行这个命令:

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

当我运行它时,出现以下错误:

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

make安装(apt-get install make),我知道它在我的$ PATH(在/ usr / bin /中),但是我仍然从install-module.pl中得到这个错误。

我需要做一些特别的事情,以确保它有正确的path,或者应该使用我的shell的path? “make”指的是我已经安装的make,或者可以引用一些perl模块呢?

谢谢!

我刚刚有同样的错误,并修正了下面。

 cpan o conf make '/usr/bin/make' #or path to your make o conf commit 

尝试用CPAN安装它:

 $ perl -MCPAN -e shell cpan> install Math::Random::Secure