1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Merge pull request #1362 from benthompson15/MCOL-4155

MCOL-4155: rename the cnf file for enterprise builds.
This commit is contained in:
David.Hall
2020-08-18 12:12:13 -05:00
committed by GitHub

View File

@ -66,6 +66,13 @@ if (TARGET columnstore)
install(PROGRAMS install_mcs_mysql.sh
DESTINATION ${ENGINE_SBINDIR} COMPONENT columnstore-engine)
install(FILES columnstore.cnf
DESTINATION ${MARIADB_MYCNFDIR} COMPONENT columnstore-engine)
if(BUILD_CONFIG STREQUAL "enterprise")
message(STATUS "enterprise build: columnstore.cnf renamed to x-columnstore.cnf on install")
install(FILES columnstore.cnf
RENAME x-columnstore.cnf
DESTINATION ${MARIADB_MYCNFDIR} COMPONENT columnstore-engine)
else()
install(FILES columnstore.cnf
DESTINATION ${MARIADB_MYCNFDIR} COMPONENT columnstore-engine)
endif()
endif()