From: John Spray Date: Mon, 3 Aug 2015 12:14:16 +0000 (+0100) Subject: CMake: fix cephfs cls build X-Git-Tag: v9.1.0~453^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a4a81c33c969c077656e103bda350dc33505d8c8;p=ceph.git CMake: fix cephfs cls build Signed-off-by: John Spray --- diff --git a/src/cls/CMakeLists.txt b/src/cls/CMakeLists.txt index bb050a15f087..c6abc1f664be 100644 --- a/src/cls/CMakeLists.txt +++ b/src/cls/CMakeLists.txt @@ -100,10 +100,10 @@ endif (WITH_RADOSGW) # cls_cephfs if (WITH_CEPHFS) add_library(cls_cephfs SHARED - rgw/cls_cephfs.cc) + cephfs/cls_cephfs.cc) set_target_properties(cls_cephfs PROPERTIES VERSION "1.0.0" SOVERSION "1") install(TARGETS cls_cephfs DESTINATION lib/rados-classes) add_library(cls_cephfs_client - rgw/cls_cephfs_client.cc) + cephfs/cls_cephfs_client.cc) endif (WITH_CEPHFS)