Browse Source
fix conditional for GRADLE
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
fi
master