mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
Replaced with a simple invocation of "aclocal -I guile-config". This
works as of automake 1.5.
This commit is contained in:
parent
95b6a62fd8
commit
2378f3d69a
1 changed files with 4 additions and 16 deletions
|
@ -1,19 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
temp=/tmp/guile-aclocal.$$
|
# This trivial script exists to have a single place where the
|
||||||
trap "rm -rf $temp" 0 1 2 15
|
# invocation of aclocal is specified. It is called from both
|
||||||
|
# autogen.sh and the Makefile.
|
||||||
|
|
||||||
mkdir $temp
|
aclocal -I guile-config
|
||||||
[ -d $temp ] || {
|
|
||||||
echo "guile-aclocal.sh: cannot create temp directory"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# copy all installed aclocal files into $temp
|
|
||||||
cp `aclocal --print-ac-dir`/*.m4 $temp
|
|
||||||
|
|
||||||
# remove the .m4 files installed by Guile from $temp, so they don't
|
|
||||||
# cause conflicts
|
|
||||||
rm -f ${temp}/guile.m4 ${temp}/qthreads.m4
|
|
||||||
|
|
||||||
aclocal --acdir=$temp -I .
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue