typo + new comment
[automake.git] / tests / confdeps.test
blobe6763f26aa232d6e6864c984b833ae59a30cd3f6
1 #! /bin/sh
3 # Make sure that config* files are properly regenerated.
5 . $srcdir/defs || exit 1
7 echo "FOO = foo" > Makefile.am
8 set -e
10 echo "$me: Not generated by aclocal..."
11 echo "Hello, universe!" > aclocal.m4
12 $AUTOMAKE
13 grep '^\$(ACLOCAL_M4):' Makefile.in && exit 1
16 echo "$me: Generated by aclocal..."
17 $ACLOCAL
18 $AUTOMAKE
19 grep '^\$(ACLOCAL_M4):' Makefile.in
21 exit 0