mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-17 11:10:18 +02:00
* 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
17 lines
317 B
Bash
Executable file
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
|