From: Jason Dillaman Date: Tue, 6 Jun 2017 13:38:09 +0000 (-0400) Subject: pybind/rbd: module should depend on librbd not rbd CLI X-Git-Tag: v12.1.0~227^2~3 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=d9a9a07c445b6f82380b72147853400654d7a14b;p=ceph.git pybind/rbd: module should depend on librbd not rbd CLI Signed-off-by: Jason Dillaman --- diff --git a/src/pybind/rbd/CMakeLists.txt b/src/pybind/rbd/CMakeLists.txt index 27ce215ae2668..fee56ec40af1f 100644 --- a/src/pybind/rbd/CMakeLists.txt +++ b/src/pybind/rbd/CMakeLists.txt @@ -1,3 +1,3 @@ distutils_add_cython_module(cython${PYTHON_VERSION}_rbd ${CMAKE_CURRENT_SOURCE_DIR}/rbd.pyx) -add_dependencies(cython${PYTHON_VERSION}_rbd rbd) +add_dependencies(cython${PYTHON_VERSION}_rbd librbd) distutils_install_cython_module(cython${PYTHON_VERSION}_rbd)