Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 10.2
-
Fix Version/s: 10.5.3
-
Component/s: Packaging
-
Labels: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()
|