Home | History | Annotate | Download | only in open-vcdiff

Lines Matching refs:ACLOCAL

4 #    aclocal.m4 configure Makefile.in src/config.h.in \
8 # Here's a command you can run to see what files aclocal will import:
9 # aclocal -I ../autoconf --output=- | sed -n 's/^m4_include..\([^]]*\).*/\1/p'
14 trap 'rm -f aclocal.m4.tmp' EXIT
16 # Use version 1.10 of aclocal and automake if available.
17 ACLOCAL=aclocal-1.10
18 if test -z `which "$ACLOCAL"`; then
19 ACLOCAL=aclocal
33 # aclocal tries to overwrite aclocal.m4 even if the contents haven't
37 "$ACLOCAL" --force -I m4 --output=aclocal.m4.tmp
38 if cmp aclocal.m4.tmp aclocal.m4; then
39 touch aclocal.m4 # pretend that we regenerated the file
40 rm -f aclocal.m4.tmp
42 mv aclocal.m4.tmp aclocal.m4 # we did set -e above, so we die if this fails