Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.2(EOL)
-
None
Description
Building the server package with cmake parameter -DINSTALL_LAYOUT=DEB will result in wrong installation directories for Connector/C.
How to fix:
--- a/cmake/mariadb_connector_c.cmake
|
+++ b/cmake/mariadb_connector_c.cmake
|
@@ -24,6 +24,8 @@ SET(CONC_WITH_MYSQLCOMPAT ON)
|
|
IF (INSTALL_LAYOUT STREQUAL "RPM")
|
SET(CONC_INSTALL_LAYOUT "RPM")
|
+ELSEIF (INSTALL_LAYOUT STREQUAL "DEB")
|
+ SET(CONC_INSTALL_LAYOUT "DEB")
|
ELSE()
|
SET(CONC_INSTALL_LAYOUT "DEFAULT")
|
ENDIF()
|