remove pointless [] around if tests

SVN revision: 17692
This commit is contained in:
Mike Frysinger 2005-10-20 00:16:16 +00:00
parent aafe5bb24e
commit 30dbd4e7ba
1 changed files with 2 additions and 2 deletions

View File

@ -464,7 +464,7 @@ AC_MSG_CHECKING(whether ecore_dfb module is to be built)
AC_ARG_ENABLE(ecore-dfb,
[ --disable-ecore-dfb disable the ecore_dfb module],
[
if [ test "$enableval" = "yes" ]; then
if test "$enableval" = "yes" ; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
@ -663,7 +663,7 @@ AC_MSG_CHECKING(whether ecore_evas DirectFB support is to be built)
AC_ARG_ENABLE(ecore-evas-dfb,
[ --disable-ecore-evas-dfb disable DirectFB in the ecore_evas module],
[
if [ test "$enableval" = "yes" ]; then
if test "$enableval" = "yes" ; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)