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

MCOL-4155: rename the cnf file for enterprise builds.

This commit is contained in:
benthompson15
2020-08-12 15:21:32 -05:00
parent 70f40210d0
commit 30d3930f96

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()