]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
configure.ac: cython is used for more than librbd now 7856/head
authorJosh Durgin <jdurgin@redhat.com>
Tue, 1 Mar 2016 05:36:36 +0000 (21:36 -0800)
committerJosh Durgin <jdurgin@redhat.com>
Tue, 1 Mar 2016 22:53:43 +0000 (14:53 -0800)
Signed-off-by: Josh Durgin <jdurgin@redhat.com>
configure.ac

index dd44739c6caa6e78ddec1496ce5e73376f6c2479..1f5dc962a42a99f5ab9450309ed82d35567c9d7c 100644 (file)
@@ -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