我已经下载了我想要编译这个tarball。因此,我写了以下内容:
/tmp/libtheoraplayer/trunk/$ autoreconf --force --install但我得到的是:
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. configure.ac:54: required file **`include/Makefile.in'** not found autoreconf: automake failed with exit status: 1
但是文件Makefile.in在src/文件夹中。
有什么想法吗?
哈维尔
发布于 2012-04-08 01:38:27
据我所知,安装程序的最终用户不需要执行autoreconf。它是为开发人员准备的。当您有来自存储库的代码,并试图构建它时(即使您不是开发人员),您需要自动重新配置。如果不是这样,您只需尝试安装和使用该软件,尝试创建一个新的副本,然后
./configure
make
make installHTH
发布于 2012-11-02 21:07:00
好的,如果你需要autoreconf,安装它
yum install automake autoconfhttps://stackoverflow.com/questions/10049458
复制相似问题