1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-17 11:10:18 +02:00
guile/autogen.sh
Ludovic Court`es e274f1c232 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
2008-04-25 19:09:31 +02:00

17 lines
317 B
Bash
Executable file

#!/bin/sh
if test -f "`aclocal --print-ac-dir`/guile.m4"; then
aclocal
else
if test -f "`guile-config info datadir`/aclocal/guile.m4"; then
aclocal -I "`guile-config info datadir`/aclocal"
else
echo "Cannot find guile.m4";
exit;
fi
fi
libtoolize && \
autoheader && \
automake -a && \
autoconf