2011-06-14 22:23:11

by Andreas Dilger

[permalink] [raw]
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 <[email protected]>
---
Makefile.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

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.7.3.4