- git clone git://git.sv.gnu.org/autoconf.git
- git clone git://git.sv.gnu.org/automake.git
- git clone git://git.sv.gnu.org/libtool.git
git clean -f -Xwill restore the working tree to the pristine condition.
To build autoconf from source:
- aclocal -I m4 && automake --add-missing && autoconf
- rm INSTALL
- automake complains:
Makefile.am:40: MAKE_CASE_SENSITIVE does not appear in AM_CONDITIONAL
- autoconf complains:
configure.ac:116: error: possibly undefined macro: AC_PROG_GNU_M4 If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:184: error: possibly undefined macro: AC_PROG_MAKE_CASE_SENSITIVE
automake --add-missing
before, pointing to a system INSTALL file (this would be pretty nasty if you ran make as the same user that installed the automake you used for bootstrapping autoconf, since you would never notice the overwriting).
Making all in . /bin/sh something/autoconf/build-aux/missing --run makeinfo --no-headers --no-validate --no-split --plaintext -o something/autoconf/INSTALL \ something/autoconf/doc/install.texi something/autoconf/INSTALL: Permission deniedHere are the specific versions of these autotools I needed for binutils:
- autoconf v2.64, automake v1.11.1
No comments:
Post a Comment