1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

* autogen.sh: Changed the path to the scripts directory.

In libltdl, run aclocal before autoconf and automake: this
	eliminated various warnings after upgrading to newer automake.
This commit is contained in:
Gary Houston 2002-06-30 17:06:35 +00:00
parent c136c9205e
commit feec7802ff
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2002-06-30 Gary Houston <ghouston@arglist.com>
* autogen.sh: Changed the path to the scripts directory.
In libltdl, run aclocal before autoconf and automake: this
eliminated various warnings after upgrading to newer automake.
2002-05-22 Marius Vollmer <mvo@zagadka.ping.de> 2002-05-22 Marius Vollmer <mvo@zagadka.ping.de>
From John W. Eaton <jwe@bevo.che.wisc.edu> From John W. Eaton <jwe@bevo.che.wisc.edu>

View file

@ -30,7 +30,7 @@ rm -f examples/example.gdbinit
ln -s $workbook/build/dist-files/.gdbinit examples/example.gdbinit ln -s $workbook/build/dist-files/.gdbinit examples/example.gdbinit
# TODO: This should be moved to dist-guile # TODO: This should be moved to dist-guile
mscripts=$workbook/../scripts mscripts=../guile-scripts
rm -f BUGS rm -f BUGS
$mscripts/render-bugs > BUGS $mscripts/render-bugs > BUGS
@ -67,6 +67,7 @@ automake --add-missing
# Make sure that libltdl uses the same autoconf version as the rest. # Make sure that libltdl uses the same autoconf version as the rest.
# #
echo "libltdl..." echo "libltdl..."
(cd libltdl && aclocal)
(cd libltdl && autoconf) (cd libltdl && autoconf)
(cd libltdl && automake --gnu --add-missing) (cd libltdl && automake --gnu --add-missing)