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:
parent
307bd0a794
commit
a4908d56f4
1 changed files with 11 additions and 1 deletions
12
autogen.sh
12
autogen.sh
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue