Browse Source

Fix bug in condition: 'test ...' should return false in this case

master
Valdis Vitolins 3 years ago
parent
commit
b4589413d7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      configure.ac

+ 1
- 1
configure.ac View File

@@ -86,7 +86,7 @@ if test -e ${GRADLE} ; then
AM_CONDITIONAL(HAVE_GRADLE, [test 1 = 1])
else
AC_MSG_RESULT([no])
AM_CONDITIONAL(HAVE_GRADLE, [test 0 = 0])
AM_CONDITIONAL(HAVE_GRADLE, [test 1 = 0])
fi

AC_SUBST(GRADLE)

Loading…
Cancel
Save