1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 21:40:33 +02:00

* autogen.sh: Run aclocal with check where guile.m4 is installed.

This commit is contained in:
Keisuke Nishida 2000-09-11 09:18:49 +00:00
parent 307bd0a794
commit a4908d56f4

View file

@ -1,6 +1,16 @@
#!/bin/sh
aclocal
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
autoheader
automake -a
autoconf