without this fix (assuming it does, what the original author intended to check for), the configure script spits out an error: checking for ndk-build no checking for gradle no ${_source}/configure: line 13806: 0: command not found checking if zsp-gcc supports C99 without any flags yes checking if zsp-gcc supports C99 with the -std=c99 flag yes that's because the condition in AM_CONDITIONAL is expected to be a valid shell expression for an if-statement, not just plain value: { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gradle" >&5 printf %s "checking for gradle... " >&6; } if test -e ${GRADLE} ; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${GRADLE}" >&5 printf "%s\n" "${GRADLE}" >&6; } if 1; then HAVE_GRADLE_TRUE= HAVE_GRADLE_FALSE='#' else HAVE_GRADLE_TRUE='#' HAVE_GRADLE_FALSE= fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } if 0; then HAVE_GRADLE_TRUE= HAVE_GRADLE_FALSE='#' else HAVE_GRADLE_TRUE='#' HAVE_GRADLE_FALSE= fi fimaster
AC_MSG_CHECKING([for gradle]) | AC_MSG_CHECKING([for gradle]) | ||||
if test -e ${GRADLE} ; then | if test -e ${GRADLE} ; then | ||||
AC_MSG_RESULT([${GRADLE}]) | AC_MSG_RESULT([${GRADLE}]) | ||||
AM_CONDITIONAL(HAVE_GRADLE, [1]) | |||||
AM_CONDITIONAL(HAVE_GRADLE, [test 1 = 1]) | |||||
else | else | ||||
AC_MSG_RESULT([no]) | AC_MSG_RESULT([no]) | ||||
AM_CONDITIONAL(HAVE_GRADLE, [0]) | |||||
AM_CONDITIONAL(HAVE_GRADLE, [test 0 = 0]) | |||||
fi | fi | ||||
AC_SUBST(GRADLE) | AC_SUBST(GRADLE) |