Skip to content

Commit

Permalink
Merge pull request #9480 from AlwinEsch/make-cmake-to-all
Browse files Browse the repository at this point in the history
Make cmake required on all platforms
  • Loading branch information
AlwinEsch committed Mar 29, 2016
2 parents b7aa348 + 21840d0 commit 36675da
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1767,11 +1767,9 @@ if test "$build_vendor" != "apple" ; then
fi
fi

if test "$use_arch" != "arm" ; then
AC_CHECK_PROG(HAVE_CMAKE,cmake,"yes","no",)
if test "$HAVE_CMAKE" = "no" ; then
AC_MSG_ERROR($missing_program)
fi
AC_CHECK_PROG(HAVE_CMAKE,cmake,"yes","no",)
if test "$HAVE_CMAKE" = "no" ; then
AC_MSG_ERROR("cmake not found")
fi

AC_CHECK_PROG(HAVE_GPERF,gperf,"yes","no",)
Expand Down

0 comments on commit 36675da

Please sign in to comment.