From: Ali Maredia Date: Wed, 18 Oct 2017 22:07:30 +0000 (-0400) Subject: cmake: add cython_rbd as a dependency to vstart target X-Git-Tag: v13.0.1~449^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=73f75c5365d887b30a25c9278f94943fb286a78c;p=ceph.git cmake: add cython_rbd as a dependency to vstart target Without cython_rbd, there are import errors in the mgr log and the ceph-mgr dashboard cannot be viewed by building just the vstart target. Signed-off-by: Ali Maredia --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 62a6ecc5d6ee..c48782888961 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1084,7 +1084,8 @@ add_custom_target(vstart-base DEPENDS add_custom_target(vstart DEPENDS vstart-base - ceph-mds) + ceph-mds + cython_rbd) if(WITH_RADOSGW) add_dependencies(vstart radosgw radosgw-admin) endif(WITH_RADOSGW)