Home | History | Annotate | Download | only in vendor

Lines Matching refs:aclocal

8 #    aclocal.m4 configure Makefile.in src/config.h.in \
12 # Here's a command you can run to see what files aclocal will import:
13 # aclocal -I ../autoconf --output=- | sed -n 's/^m4_include..\([^]]*\).*/\1/p'
18 trap 'rm -f aclocal.m4.tmp' EXIT
31 # Use version 1.9 of aclocal and automake if available.
32 ACLOCAL=`WhichOf aclocal-1.9 aclocal`
36 # aclocal tries to overwrite aclocal.m4 even if the contents haven't
40 "$ACLOCAL" --force -I m4 --output=aclocal.m4.tmp
41 if cmp aclocal.m4.tmp aclocal.m4; then
42 touch aclocal.m4 # pretend that we regenerated the file
43 rm -f aclocal.m4.tmp
45 mv aclocal.m4.tmp aclocal.m4 # we did set -e above, so we die if this fails