$ autoreconf -fi
src/Makefile.am:43: Libtool library used but `LIBTOOL' is undefined
src/Makefile.am:43: src/Makefile.am:43: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL'
src/Makefile.am:43: to `configure.ac' and run `aclocal' and `autoconf'
again. autoreconf: automake failed with exit status: 1我按其显示的那样更改了configure.ac,但当我转向使用./configure时,仍然有一些错误:
./configure: line 19537: syntax error near unexpected token `[disable-fast-install'
./configure: line 19537: `LT_INIT#([disable-fast-install)]'发布于 2015-10-20 07:06:54
您需要重新安装 it以修复该错误,因此请按照以下步骤操作:
1]删除当前libtool (如果已安装):sudo apt-get purge libtool
2]官网https://www.gnu.org/software/libtool/下载
3]解压:tar -xzvf "name of the tar_file"
4]输入文件夹并键入:./configure && make
5]安装:sudo make install
你已经完成了,错误应该被修复!
https://stackoverflow.com/questions/33097555
复制相似问题