mirror of git://gcc.gnu.org/git/gcc.git
* HACKING: Document regenerating configure and aclocal.m4.
From-SVN: r127100
This commit is contained in:
parent
f2ffe7a031
commit
9b40cf1639
|
|
@ -1,3 +1,7 @@
|
||||||
|
2007-07-31 David Daney <ddaney@avtrex.com>
|
||||||
|
|
||||||
|
* HACKING: Document regenerating configure and aclocal.m4.
|
||||||
|
|
||||||
2007-07-31 David Daney <ddaney@avtrex.com>
|
2007-07-31 David Daney <ddaney@avtrex.com>
|
||||||
|
|
||||||
* configure.ac (INTERPRETER): New AM_CONDITIONAL.
|
* configure.ac (INTERPRETER): New AM_CONDITIONAL.
|
||||||
|
|
|
||||||
|
|
@ -34,10 +34,17 @@ non-maintainer-mode build and use the newly installed gjavah.
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
||||||
To regenerate libjava/configure, use:
|
To regenerate libjava/configure, first run aclocal passing the flags
|
||||||
|
found near the top of Makefile.am, then autoconf. H. J. Lu writes that
|
||||||
|
this can be done using these commands:
|
||||||
|
|
||||||
aclocal -I . -I .. -I ../config -I libltdl
|
cd libjava &&
|
||||||
autoconf
|
rm -f aclocal.m4 &&
|
||||||
|
ACFLAGS=$(grep "^ACLOCAL_AMFLAGS" Makefile.in | sed -e "s/ACLOCAL_AMFLAGS[ \t ]*=//") &&
|
||||||
|
aclocal-1.9 $ACFLAGS &&
|
||||||
|
rm -f configure &&
|
||||||
|
autoconf-2.59 &&
|
||||||
|
rm -fr autom4te.cache
|
||||||
|
|
||||||
See the GCC documentation which auto* versions to use.
|
See the GCC documentation which auto* versions to use.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue