diff options
author | Jason Dillaman <dillaman@redhat.com> | 2019-01-21 20:30:13 +0100 |
---|---|---|
committer | Jason Dillaman <dillaman@redhat.com> | 2019-01-25 14:39:05 +0100 |
commit | 0d2f21cd662acbddb85d66126212bd0a39585478 (patch) | |
tree | 0353eeb496cf079c2e38e85b65806d0147eef098 /src/pybind/CMakeLists.txt | |
parent | pybind/mgr: exclude CMakeFiles.txt files from being installed (diff) | |
download | ceph-0d2f21cd662acbddb85d66126212bd0a39585478.tar.xz ceph-0d2f21cd662acbddb85d66126212bd0a39585478.zip |
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 <dillaman@redhat.com>
Diffstat (limited to 'src/pybind/CMakeLists.txt')
-rw-r--r-- | src/pybind/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pybind/CMakeLists.txt b/src/pybind/CMakeLists.txt index f860f80739d..1538b6fec99 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) |