安装软件时,执行make命令提示以下错误
aclocal-1.14: command not found
WARNING: 'aclocal-1.14' is missing on your system.
You should only need it if you modified 'acinclude.m4' or
'configure.ac' or m4 files included by 'configure.ac'.
The 'aclocal' program is part of the GNU Automake package:
<http://www.gnu.org/software/automake>
It also requires GNU Autoconf, GNU m4 and Perl in order to run:
<http://www.gnu.org/software/autoconf>
<http://www.gnu.org/software/m4/>
<http://www.perl.org/>
make: *** [Makefile:983: aclocal.m4] Error 127
首先查看是否安装aclocal
aclocal --version
如果已经安装,版本不是1.14也没关系,没安装就执行以下命令安装软件
yum install automake
也可以源码安装automake。
然后执行 autoreconf -ivf 构建新的configure就行了。
安装软件时,执行make命令提示以下错误
aclocal-1.14: command not found
WARNING: 'aclocal-1.14' is missing on your system.
You should only need it if you modified 'acinclude.m4' or
'configure.ac' or m4 files included by 'configure.ac'.
The 'aclocal' program is part of the GNU Automake package:
<http://www.gnu.org/software/automake>
It also requires GNU Autoconf, GNU m4 and Perl in order to run:
<http://www.gnu.org/software/autoconf>
<http://www.gnu.org/software/m4/>
<http://www.perl.org/>
make: *** [Makefile:983: aclocal.m4] Error 127
首先查看是否安装aclocal
aclocal --version
如果已经安装,版本不是1.14也没关系,没安装就执行以下命令安装软件
yum install automake
也可以源码安装automake。
然后执行 autoreconf -ivf 构建新的configure就行了。