问题:
xxx@ubuntu:~/ make
cd . && /bin/bash /home/xxx/missing --run automake-1.10 --gnu
configure.ac:23: version mismatch. This is Automake 1.10.3,
configure.ac:23: but the definition used by this AM_INIT_AUTOMAKE
configure.ac:23: comes from Automake 1.10.1. You should recreate
configure.ac:23: aclocal.m4 with aclocal and run automake again.
解决方式:
autoreconf
./configure
make
本文介绍了解决Automake版本不一致导致的错误的方法。当使用旧版本的aclocal.m4文件时,可能会出现版本不匹配的问题。文章提供了一个简单的步骤来解决此问题:首先运行autoreconf命令,然后执行./configure,最后执行make命令。
4415

被折叠的 条评论
为什么被折叠?



