summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2021-04-09 11:58:13 +0200
committerOlivier Bertrand <bertrandop@gmail.com>2021-04-09 11:58:13 +0200
commit03f929aea84b1a48bd528d66f52ed2e645b83e26 (patch)
treec38a6afd1aeba1860639b4ea561d9040dfd1abe7
parentbbec4aafda377a5510a61b1042a23c1a7363cb7c (diff)
downloadmariadb-git-03f929aea84b1a48bd528d66f52ed2e645b83e26.tar.gz
Fix install modified: CMakeLists.txt
-rw-r--r--storage/connect/CMakeLists.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/storage/connect/CMakeLists.txt b/storage/connect/CMakeLists.txt
index 72934aa953c..a1a90e8a043 100644
--- a/storage/connect/CMakeLists.txt
+++ b/storage/connect/CMakeLists.txt
@@ -409,10 +409,12 @@ IF(CONNECT_WITH_JDBC AND JAVA_FOUND AND JNI_FOUND)
INSTALL(FILES
${CMAKE_CURRENT_SOURCE_DIR}/JavaWrappers.jar
${CMAKE_CURRENT_BINARY_DIR}/JdbcInterface.jar
- IF(CONNECT_WITH_MONGO)
+ DESTINATION ${INSTALL_PLUGINDIR} COMPONENT connect-engine)
+ IF(CONNECT_WITH_MONGO)
+ INSTALL(FILES
${CMAKE_CURRENT_SOURCE_DIR}/Mongo2.jar
${CMAKE_CURRENT_SOURCE_DIR}/Mongo3.jar
- ENDIF()
- DESTINATION ${INSTALL_PLUGINDIR} COMPONENT connect-engine)
+ DESTINATION ${INSTALL_PLUGINDIR} COMPONENT connect-engine)
+ ENDIF()
ENDIF()