From: Stefano Lattarini Date: Thu, 2 Jun 2011 12:14:28 +0000 (+0200) Subject: tests: fix spurious failure in autohdr3.test X-Git-Tag: ng-0.5a~89^2~204 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50036b32c5257c558a28fd054f1d2df6f000ebe2;p=thirdparty%2Fautomake.git tests: fix spurious failure in autohdr3.test * tests/autohder3.test (Makefile.am): Let `test' depend on `all', so that config.h header is truly remade. Remove now useless call to `$MAKE' when non-GNU make is in use. Failure introduced by commit `v1.11-895-g5e62b96'. --- diff --git a/ChangeLog b/ChangeLog index 9735bc468..52d81f7c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2011-06-02 Stefano Lattarini + + tests: fix spurious failure in autohdr3.test + * tests/autohder3.test (Makefile.am): Let `test' depend on `all', + so that config.h header is truly remade. + Remove now useless call to `$MAKE' when non-GNU make is in use. + Failure introduced by commit `v1.11-895-g5e62b96'. + 2011-06-02 Stefano Lattarini tests: fix spurious failure of cond29.test on NetBSD diff --git a/tests/autohdr3.test b/tests/autohdr3.test index 85688da1a..88e3c0f7d 100755 --- a/tests/autohdr3.test +++ b/tests/autohdr3.test @@ -29,7 +29,7 @@ EOF cat > Makefile.am <<'END' .PHONY: test check-local: test -test: +test: all cat $(srcdir)/config.hin ;: For debugging. cat config.h ;: Likewise. grep '#.*GREPME' $(srcdir)/config.hin @@ -47,7 +47,6 @@ $MAKE $sleep echo 'AC_DEFINE([GREPME], 1, [Doc for GREPME])' > foo.m4 -using_gmake || $MAKE $MAKE test $MAKE distcheck