From c49b808ae490f03d665df5faae457f613aa31aaf Mon Sep 17 00:00:00 2001 From: Andres AG Date: Wed, 31 Aug 2016 16:10:45 +0100 Subject: [PATCH] Add missing dependency to check in Makefile The main makefile check target does not depend on tests. When running make with the -j option it could happen that the tests are build twice and concurrently, which causes errors. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d2fa6b81fc..d475868a71 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ ifndef WINDOWS find . \( -name \*.gcno -o -name \*.gcda -o -name \*.info \) -exec rm {} + endif -check: lib +check: lib tests $(MAKE) -C tests check test: check