* autogen.sh: Changed the path to the scripts directory.
authorGary Houston <ghouston@arglist.com>
Sun, 30 Jun 2002 17:06:35 +0000 (17:06 +0000)
committerGary Houston <ghouston@arglist.com>
Sun, 30 Jun 2002 17:06:35 +0000 (17:06 +0000)
In libltdl, run aclocal before autoconf and automake: this
eliminated various warnings after upgrading to newer automake.

ChangeLog
autogen.sh

index 70d26ac..42e1bce 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
         From John W. Eaton <jwe@bevo.che.wisc.edu>
index 4f448f9..3ba9cee 100755 (executable)
@@ -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)