WARNING: 'aclocal-1.15' is missing on your system. 处理办法

1、下载安装包

wget https://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz

2、解压

tar -xzvf automake-1.15.tar.gz

3、安装

$ cd automake-1.15
$ ./configure  --prefix=安装目录
$ make
$ sudo mkdir -p /opt
$ sudo make install

4、导入环境变量

export PATH=/opt/aclocal-1.15/bin:$PATH

5、查看是否安装成功

aclocal --version

如果安装完还不行。
autoreconf -ivf  
./configure
make && make install

你可能感兴趣的:(WARNING: 'aclocal-1.15' is missing on your system. 处理办法)