本文主要是介绍Coreseek安装出现Makefile.in文件找不到,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安装Coreseek出现如下错误:
config.status: creating Makefile
config.status: WARNING: 'Makefile.in' seems to ignore the --datarootdir setting
config.status: error: cannot find input file: src/Makefile.in
先检测你的autoconf和automake安装没有,有的还要求版本,通过yum安装autoconf automake
[root@linux mmseg-3.2.14]# yum -y install autoconf automake
[root@linux mmseg-3.2.14]# aclocal
aclocal:configure.in:26: warning: macro `AM_PROG_LIBTOOL' not found in library
[root@linux mmseg-3.2.14]# yum -y install libtool
[root@linux mmseg-3.2.14]# aclocal
[root@linux mmseg-3.2.14]# libtoolize --force
Putting files in AC_CONFIG_AUX_DIR, `config'.
[root@linux mmseg-3.2.14]# automake --add-missing
[root@linux mmseg-3.2.14]# autoconf
[root@linux mmseg-3.2.14]# autoheader
[root@linux mmseg-3.2.14]# make clean
然后重新执行configure命令
这篇关于Coreseek安装出现Makefile.in文件找不到的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!