1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 13:00:26 +02:00

Call automake twice for guile-core so that two copies of mdate-sh get

a chance of being installed (one in doc/ref/ and one in
doc/tutorial/).
This commit is contained in:
Marius Vollmer 2002-04-16 22:15:14 +00:00
parent 7a1d19ac0e
commit 32f2d70008

View file

@ -30,7 +30,9 @@ rm -f examples/example.gdbinit
ln -s $workbook/build/dist-files/.gdbinit examples/example.gdbinit
######################################################################
./guile-aclocal.sh
# Make sure this matches the ACLOCAL invokation in Makefile.am
aclocal -I guile-config
######################################################################
### Libtool setup.
@ -48,6 +50,12 @@ rm libltdl/configure.tmp
autoheader
autoconf
# Automake has a bug that will let it only add one copy of a missing
# file. We nned two mdate-sh, tho, one in doc/ref/ and one in
# doc/tutorial/. We run automake twice as a workaround.
automake --add-missing
automake --add-missing
# Make sure that libltdl uses the same autoconf version as the rest.