From feec7802ff38487fb188946e169a04f3137f3a50 Mon Sep 17 00:00:00 2001 From: Gary Houston Date: Sun, 30 Jun 2002 17:06:35 +0000 Subject: [PATCH] * 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. --- ChangeLog | 6 ++++++ autogen.sh | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 70d26ac1f..42e1bcefb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-06-30 Gary Houston + + * 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 From John W. Eaton diff --git a/autogen.sh b/autogen.sh index 4f448f95a..3ba9ceec2 100755 --- a/autogen.sh +++ b/autogen.sh @@ -30,7 +30,7 @@ rm -f examples/example.gdbinit ln -s $workbook/build/dist-files/.gdbinit examples/example.gdbinit # TODO: This should be moved to dist-guile -mscripts=$workbook/../scripts +mscripts=../guile-scripts rm -f BUGS $mscripts/render-bugs > BUGS @@ -67,6 +67,7 @@ automake --add-missing # Make sure that libltdl uses the same autoconf version as the rest. # echo "libltdl..." +(cd libltdl && aclocal) (cd libltdl && autoconf) (cd libltdl && automake --gnu --add-missing)