CentOS报错/bin/sh: autoconf: command not found
一、问题描述
CentOS 7 下执行 make configure 命令时报错:
/bin/sh: autoconf: command not found
二、解决方法
1.查看 autoconf、automake 是否已安装
rpm -qa|grep autoconf
rpm -qa|grep automake
2.查看 autoconf、automake 对应的包
yum whatprovides autoconf automake
[root@server-c00ef8c3-710d-4708-9cde-2c864e7c03e2 git-2.35.1]# yum whatprovides autoconf automake
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
autoconf-2.69-11.el7.noarch : A GNU tool for automatically configuring source code
Repo : base
automake-1.13.4-3.el7.noarch : A GNU tool for automatically creating Makefiles
Repo : base
3.安装
yum -y install autoconf-2.69-11.el7.noarch
yum -y install automake-1.13.4-3.el7.noarch
本文来自博客园,作者:海_纳百川,转载请注明原文链接:https://www.cnblogs.com/chentiao/p/17562456.html,如有侵权联系删除