From 5b12eea719f4c1912bafdba0826517d429a3ce3b Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sat, 14 Feb 2015 13:49:38 -0500 Subject: [PATCH 1/1] Fix running tests out of tree MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit When building out of tree, make check fails because the "tests" file is not found. Signed-off-by: Simon Marchi Signed-off-by: Jérémie Galarneau --- tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 8d84b16b..2e307f42 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -21,4 +21,4 @@ clean-local: fi check-am: - ./run.sh tests + ./run.sh $(srcdir)/tests -- 2.34.1