* t/subobj-libtool.sh: Remove the 'compile' script automatically brought
in by 'test-init.sh', so that we can ensure "automake --add-missing"
correctly installs it. While at it, make grepping of automake output
slightly stricter.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
libtoolize
$ACLOCAL
+# Make sure compile is installed, and that Automake says so.
+rm -f compile
$AUTOMAKE --add-missing 2>stderr || { cat stderr >&2; exit 1; }
cat stderr >&2
-
-# Make sure compile is installed, and that Automake says so.
-grep 'install.*compile' stderr
+grep '^configure\.ac:4:.*install.*compile' stderr
test -f compile
grep '[^/][123]\.lo' Makefile.in && exit 1