简体   繁体   中英

"autoreconf": include/Makefile.in not found

I'm have download this tarball that I want to compile. So I have written this:

/tmp/libtheoraplayer/trunk/$ autoreconf --force --install

but I'm gettin this:

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

But the file Makefile.in is in the src/ folder..

Any idea?

Javier

To my knowledge, end users who install programs need not do autoreconf. It is for developers. When you have code from a repository, and try to build it (even if you are not a developer), you need to autoreconf. If this is not the case, you only try to install and use the software, try creating a fresh copy, and

./configure
make
make install

HTH

Alright, If at all you need autoreconf, install it

yum install automake autoconf

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM