efl: --with-profile=dev implies --with-tests=regular

if --with-tests={none,coverage} is given, those are used. Just the
default is changed.



SVN revision: 82412
This commit is contained in:
Gustavo Sverzut Barbieri 2013-01-08 13:39:25 +00:00
parent fb0daf5262
commit 26fa0cc64c
1 changed files with 6 additions and 1 deletions

View File

@ -98,11 +98,16 @@ AC_ARG_WITH([tests],
[choose testing method: regular, coverage or none.
@<:@default=none@:>@])],
[build_tests=${withval}],
[build_tests=none])
[build_tests=auto])
want_coverage="no"
want_tests="no"
case "${build_tests}" in
auto)
if test "${build_profile}" = "dev"; then
want_tests="yes"
fi
;;
regular)
want_tests="yes"
;;