From: Ludovic Court`es Date: Tue, 10 Jan 2006 08:36:43 +0000 (+0000) Subject: Fixed `autogen.sh' and removed `module' from the list of dirs to build. X-Git-Url: https://git.hcoop.net/bpt/guile.git/commitdiff_plain/e274f1c232db823e7c8e875cec6c1709c1a68445 Fixed `autogen.sh' and removed `module' from the list of dirs to build. * autogen.sh: Fixed (call `libtoolize'). * Makefile.am (SUBDIRS): Removed `module' which doesn't build right now. git-archimport-id: lcourtes@laas.fr--2004-libre/guile-vm--revival--0.6--patch-16 --- diff --git a/Makefile.am b/Makefile.am index feaaaa9d7..e9069d36d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,7 @@ -SUBDIRS = src doc module testsuite +SUBDIRS = src doc testsuite + +# FIXME: The `module' directory is removed from `SUBDIRS' until it can +# actually be built. EXTRA_DIST = acconfig.h diff --git a/autogen.sh b/autogen.sh index 7aa465ef2..5bc8c7835 100755 --- a/autogen.sh +++ b/autogen.sh @@ -11,6 +11,7 @@ else fi fi -autoheader -automake -a +libtoolize && \ +autoheader && \ +automake -a && \ autoconf