make报错:'aclocal-1.15' is missing on your system

cd /usr/local
wget https://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz
tar -xzf automake-1.15.tar.gz
cd automake-1.15
./configure  --prefix=/usr/local/automake

make

make install

导入环境变量
vi /etc/profile
	export PATH=$PATH:/usr/local/automake/bin

source /etc/profile

aclocal --version
aclocal-1.15 --version

你可能感兴趣的:(Linux)