From 375b70c8662dd903714ee5c1270b0f2da5f17763 Mon Sep 17 00:00:00 2001 From: Stoiko Ivanov Date: Tue, 19 Jan 2021 11:38:10 +0100 Subject: [PATCH] buildsys: fix check target in main Makefile the tests are in src/ - the test target in the main Makefile still tries to run them in the main directory. Signed-off-by: Stoiko Ivanov --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f6bf7c6..081676a 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ upload: ${DEB} .PHONY: check check: - make -C tests check + make -C src/tests check .PHONY: clean distclean distclean: clean -- 2.39.2