From 597aaba4f5739bac66edf842c761154d805254e1 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Mon, 29 Feb 2016 21:36:36 -0800 Subject: [PATCH] configure.ac: cython is used for more than librbd now Signed-off-by: Josh Durgin --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index dd44739c6caa6..1f5dc962a42a9 100644 --- a/configure.ac +++ b/configure.ac @@ -126,7 +126,7 @@ AM_CONDITIONAL(WITH_RBD, test "$with_rbd" = "yes") #AS_IF([test "$with_rbd" = "yes"], [AC_DEFINE([WITH_RADOS, WITH_RBD])]) AC_ARG_WITH([cython], - [AS_HELP_STRING([--with-cython], [build python bindings for librbd])], + [AS_HELP_STRING([--with-cython], [build python bindings for libraries])], [], [with_cython=yes]) AM_CONDITIONAL(WITH_CYTHON, test "$with_cython" = "yes") @@ -207,7 +207,7 @@ AC_ARG_ENABLE([server], AM_CONDITIONAL(ENABLE_SERVER, test "$enable_server" = "yes") #AS_IF([test "$enable_server" = "yes"], [AC_DEFINE([WITH_MON, WITH_OSD, WITH_MDS, ENABLE_SERVER])]) -# cython is required to build librbd python bindings +# cython is required to build python bindings for libraries if test x"$with_cython" = xyes; then AC_CHECK_PROG(CYTHON_CHECK, cython, yes) if test x"$CYTHON_CHECK" != xyes; then -- 2.39.5