From: Jason Dillaman Date: Mon, 21 Jan 2019 19:30:13 +0000 (-0500) Subject: pybind/mgr: exclude osd_perf_query module from being installed X-Git-Tag: v14.1.0~266^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0d2f21cd662acbddb85d66126212bd0a39585478;p=ceph.git pybind/mgr: exclude osd_perf_query module from being installed This is a proof-of-concept example module that isn't expected to be used in a production environment. Signed-off-by: Jason Dillaman --- diff --git a/src/pybind/CMakeLists.txt b/src/pybind/CMakeLists.txt index f860f80739d1..1538b6fec996 100644 --- a/src/pybind/CMakeLists.txt +++ b/src/pybind/CMakeLists.txt @@ -104,6 +104,7 @@ if(WITH_MGR) DESTINATION ${CMAKE_INSTALL_PKGLIBDIR} REGEX ".*/CMakeLists.txt" EXCLUDE REGEX ".*/\\.gitignore" EXCLUDE - REGEX ".*/hello/.*" EXCLUDE) + REGEX ".*/hello/.*" EXCLUDE + REGEX ".*/osd_perf_query/.*" EXCLUDE) add_subdirectory(mgr) endif(WITH_MGR)