Coreseek 安裝出現 Makefile.in 檔案找不到

linuxMr發表於2018-11-19

安裝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命令

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章