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

Lines Matching refs:aclocal

18 #    aclocal.m4 configure Makefile.in src/config.h.in \
22 # Here's a command you can run to see what files aclocal will import:
23 # aclocal -I ../autoconf --output=- | sed -n 's/^m4_include..\([^]]*\).*/\1/p'
28 trap 'rm -f aclocal.m4.tmp' EXIT
30 # Use version 1.11 of aclocal and automake if available.
31 ACLOCAL=aclocal-1.11
32 if test -z `which "$ACLOCAL"`; then
33 ACLOCAL=aclocal
47 # aclocal tries to overwrite aclocal.m4 even if the contents haven't
51 "$ACLOCAL" --force -I m4 -I gflags/m4 --output=aclocal.m4.tmp
52 if cmp aclocal.m4.tmp aclocal.m4; then
53 touch aclocal.m4 # pretend that we regenerated the file
54 rm -f aclocal.m4.tmp
56 mv aclocal.m4.tmp aclocal.m4 # we did set -e above, so we die if this fails