From 734beb4363d4a8d503c7c0ceabc3297972b015ed Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Sun, 11 Oct 2009 13:28:31 +0200 Subject: [PATCH] Fix `make clean check' for the Automake package. * lib/Automake/Makefile.am (SUBDIRS): Add `.' before `tests', so that Config.pm is built first. Signed-off-by: Ralf Wildenhues --- ChangeLog | 4 ++++ lib/Automake/Makefile.am | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f4311b7..6d1bf3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2009-10-11 Ralf Wildenhues + Fix `make clean check' for the Automake package. + * lib/Automake/Makefile.am (SUBDIRS): Add `.' before `tests', + so that Config.pm is built first. + Fix in-tree `recheck' after failed test that runs `check'. If a test like pr401b-p.test fails for some reason, a `make recheck' would cause another reason for failure because it sets diff --git a/lib/Automake/Makefile.am b/lib/Automake/Makefile.am index 077b979..173b18e 100644 --- a/lib/Automake/Makefile.am +++ b/lib/Automake/Makefile.am @@ -15,7 +15,8 @@ ## You should have received a copy of the GNU General Public License ## along with this program. If not, see . -SUBDIRS = tests +# `make clean check' should build Config.pm first. +SUBDIRS = . tests perllibdir = $(pkgvdatadir)/Automake dist_perllib_DATA = \ -- 2.7.4