From db7cb4b4a6c50527c764e11c12b6caf4f207d46b Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Wed, 15 Jun 2011 22:17:38 -0400 Subject: [PATCH] check: build all dependencies before "make check" If "make check" is run on a clean repository, it fails due to missing dependencies for building the test programs. Have "make check" build all dependencies before starting the tests to ensure that it can finish without error. Signed-off-by: Andreas Dilger Signed-off-by: Theodore Ts'o --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 5708efd..d336c57 100644 --- a/Makefile.in +++ b/Makefile.in @@ -140,5 +140,5 @@ distclean-local: clean-local realclean-local: distclean-local $(RM) -f configure -check:: subs check-recursive +check:: all check-recursive -- 1.8.3.1