]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
pybind/mgr: exclude osd_perf_query module from being installed
authorJason Dillaman <dillaman@redhat.com>
Mon, 21 Jan 2019 19:30:13 +0000 (14:30 -0500)
committerJason Dillaman <dillaman@redhat.com>
Fri, 25 Jan 2019 13:39:05 +0000 (08:39 -0500)
This is a proof-of-concept example module that isn't expected to be
used in a production environment.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
src/pybind/CMakeLists.txt

index f860f80739d180e81b579f61ca504d879d05570d..1538b6fec996023b7ed6202c8f1b5c826ac36ea2 100644 (file)
@@ -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)