mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 04:10:18 +02:00
16 lines
289 B
Bash
Executable file
16 lines
289 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
|
|
|
|
autoheader
|
|
automake -a
|
|
autoconf
|