fix report of test command summary

SVN revision: 82994
This commit is contained in:
Gustavo Sverzut Barbieri 2013-01-18 19:15:14 +00:00
parent 475ed5548d
commit acb864c987
1 changed files with 4 additions and 3 deletions

View File

@ -3555,12 +3555,13 @@ echo "Edje............: yes (${features_edje})"
echo "Emotion.........: yes (${features_emotion})"
echo "Ethumb..........: yes"
echo "Ethumb_Client...: yes"
if test "x${build_tests}" = "none"; then
if test "${build_tests}" = "none"; then
echo "Tests...........: no"
else
elif test "${build_tests}" = "regular"; then
echo "Tests...........: make check"
elif test "${build_tests}" = "coverage"; then
echo "Tests...........: make lcov-check"
fi
echo "Tests...........: ${build_tests}"
echo "Examples........: make examples (make install-examples)"
if test "x${build_doc}" = "xyes"; then
echo "Documentation...: make doc"