tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=89ec93305e87cf1bd643e7c8c5d9022b005f52f2
commit 89ec93305e87cf1bd643e7c8c5d9022b005f52f2 Author: Tom Hacohen <t...@stosb.com> Date: Tue Nov 19 13:12:56 2013 +0000 Tests: fix the print summary for tests with dev profile. When the dev profile is enabled, tests are also enabled if libcheck is found. Fix the print in the summary to reflect that. --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 1b30c25..89244e4 100644 --- a/configure.ac +++ b/configure.ac @@ -3908,6 +3908,8 @@ echo "Ethumb..........: yes" echo "Ethumb_Client...: yes" if test "${build_tests}" = "none"; then echo "Tests...........: no" +elif test "${build_tests}" = "auto"; then +echo "Tests...........: make check (inexplicitly enabled)" elif test "${build_tests}" = "regular"; then echo "Tests...........: make check" elif test "${build_tests}" = "coverage"; then --