From: Casey Bodley Date: Thu, 10 Sep 2020 16:45:50 +0000 (-0400) Subject: cmake: add cls_fifo as a dependency of osd X-Git-Tag: v16.1.0~1136^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9fbb31d6be73f6bc995d7a2d97eb4903e05e598d;p=ceph.git cmake: add cls_fifo as a dependency of osd otherwise cls_fifo is not built by 'make vstart' Signed-off-by: Casey Bodley --- diff --git a/src/osd/CMakeLists.txt b/src/osd/CMakeLists.txt index c76e96fe1f87..691c1d2280cd 100644 --- a/src/osd/CMakeLists.txt +++ b/src/osd/CMakeLists.txt @@ -68,5 +68,5 @@ if(WITH_RBD) add_dependencies(osd cls_rbd) endif() if(WITH_RADOSGW) - add_dependencies(osd cls_otp cls_rgw cls_queue cls_rgw_gc cls_2pc_queue) + add_dependencies(osd cls_otp cls_rgw cls_queue cls_rgw_gc cls_2pc_queue cls_fifo) endif()