Handle Missing aclocal-1.15 Error When Install sshpass

来源:互联网 发布:淘宝注册地址怎么修改 编辑:程序博客网 时间:2024/06/05 23:49

The steps to install sshpass

tar -zxvf sshpass-1.05.tar.gz

cd sshpass-1.05

./configure

make && make install


When I run make && make install, amissing alocal-1.15 occured.

[root@yq01-sw-hds12.yq01.baidu.com sshpass-1.06]# make && make install/usr/bin/make64 MAC=64CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/hadoop/setupHadoop/software/sshpass/sshpass-1.06/missing aclocal-1.15 /home/hadoop/setupHadoop/software/sshpass/sshpass-1.06/missing: line 81: aclocal-1.15: command not foundWARNING: 'aclocal-1.15' 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/>make64: *** [aclocal.m4] Error 127
Before running ./configure try running autoreconf -f -i. The autoreconf program automatically runs autoheader, aclocal, automake, autopoint and libtoolize as required.  

0 0