diff options
author | Alwin Esch <alwin.esch@web.de> | 2016-03-28 16:24:26 +0200 |
---|---|---|
committer | Alwin Esch <alwin.esch@web.de> | 2016-03-28 16:24:26 +0200 |
commit | 21840d0858c4a6db618d9f3ca437db529b6eb9f0 (patch) | |
tree | 66210b3e4bbfbf1166594ed37df1021f698969cf /configure.ac | |
parent | bc0c57939af5014667cc4cdebd7fa44a54ad122a (diff) |
Make cmake required on all platforms
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 174c2d3176..bb291161f8 100644 --- a/configure.ac +++ b/configure.ac @@ -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",) |