diff options
author | unknown <knielsen@knielsen-hq.org> | 2012-01-23 12:20:16 +0100 |
---|---|---|
committer | unknown <knielsen@knielsen-hq.org> | 2012-01-23 12:20:16 +0100 |
commit | cfd4fcb0bc3d469dfca74dae30d17250d65fdd91 (patch) | |
tree | 63748edc7d791bf41847fa8b678e38d3db952dc6 /cmake/install_layout.cmake | |
parent | 3cb24fff33105f40c2f4b696a06449032ec09604 (diff) | |
download | mariadb-git-cfd4fcb0bc3d469dfca74dae30d17250d65fdd91.tar.gz |
Initial draft for building .deb packages for MariaDB 5.5.
Diffstat (limited to 'cmake/install_layout.cmake')
-rw-r--r-- | cmake/install_layout.cmake | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cmake/install_layout.cmake b/cmake/install_layout.cmake index 23c787a7c97..38d3fd3d01e 100644 --- a/cmake/install_layout.cmake +++ b/cmake/install_layout.cmake @@ -166,26 +166,26 @@ SET(INSTALL_PLUGINTESTDIR_RPM ${plugin_tests}) # DEB layout # SET(INSTALL_BINDIR_DEB "bin") -SET(INSTALL_SBINDIR_DEB "bin") -SET(INSTALL_SCRIPTDIR_DEB "scripts") +SET(INSTALL_SBINDIR_DEB "sbin") +SET(INSTALL_SCRIPTDIR_DEB "bin") # SET(INSTALL_LIBDIR_DEB "lib") -SET(INSTALL_PLUGINDIR_DEB "lib/plugin") +SET(INSTALL_PLUGINDIR_DEB "lib/mysql/plugin") # -SET(INSTALL_INCLUDEDIR_DEB "include") +SET(INSTALL_INCLUDEDIR_DEB "include/mysql") # SET(INSTALL_DOCDIR_DEB "docs") SET(INSTALL_DOCREADMEDIR_DEB ".") -SET(INSTALL_MANDIR_DEB "man") -SET(INSTALL_INFODIR_DEB "docs") +SET(INSTALL_MANDIR_DEB "share/man") +SET(INSTALL_INFODIR_DEB "share/info") # SET(INSTALL_SHAREDIR_DEB "share") -SET(INSTALL_MYSQLSHAREDIR_DEB "share") +SET(INSTALL_MYSQLSHAREDIR_DEB "share/mysql") SET(INSTALL_MYSQLTESTDIR_DEB "mysql-test") SET(INSTALL_SQLBENCHDIR_DEB ".") SET(INSTALL_SUPPORTFILESDIR_DEB "support-files") # -SET(INSTALL_MYSQLDATADIR_DEB "data") +SET(INSTALL_MYSQLDATADIR_DEB "/var/lib/mysql") SET(INSTALL_PLUGINTESTDIR_DEB ${plugin_tests}) # |