From 65919ad17fd7b4c6f963690fc78155c7cfe1a51a Mon Sep 17 00:00:00 2001 From: Siarhei Siamashka Date: Tue, 22 Feb 2011 19:28:08 +0200 Subject: [PATCH] Ensure that tests run as the last step of a build for 'make check' Previously 'make check' would compile and run tests first, and only then proceed to compiling demos. Which is not very convenient because of the need to scroll back console output to see the tests verdict. Swapping order of SUBDIRS variable entries in Makefile.am resolves this. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 062c58a..f479a66 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = pixman test demos +SUBDIRS = pixman demos test pkgconfigdir=$(libdir)/pkgconfig pkgconfig_DATA=pixman-1.pc -- 2.7.4