summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorunknown <knielsen@knielsen-hq.org>2012-04-03 08:00:57 +0200
committerunknown <knielsen@knielsen-hq.org>2012-04-03 08:00:57 +0200
commit71663be98005e25f6b135f372c00c7ddbfd52381 (patch)
tree167bbcd45df855ce93c8ded19dee4df1fdb2a915 /cmake
parent98ed43b7689d06b9ffe50501a4a7f39403615577 (diff)
downloadmariadb-git-71663be98005e25f6b135f372c00c7ddbfd52381.tar.gz
lp:886550 Wrong installation path for some include files.
Now install all includes in a flat hierarchy under $PREFIX/include/mysq/, same as 5.3. User can override with -DINSTALL_INCLUDEDIR
Diffstat (limited to 'cmake')
-rw-r--r--cmake/install_layout.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/install_layout.cmake b/cmake/install_layout.cmake
index 38d3fd3d01e..76e78e8b72f 100644
--- a/cmake/install_layout.cmake
+++ b/cmake/install_layout.cmake
@@ -115,7 +115,7 @@ SET(INSTALL_SCRIPTDIR_STANDALONE "scripts")
SET(INSTALL_LIBDIR_STANDALONE "lib")
SET(INSTALL_PLUGINDIR_STANDALONE "lib/plugin")
#
-SET(INSTALL_INCLUDEDIR_STANDALONE "include")
+SET(INSTALL_INCLUDEDIR_STANDALONE "include/mysql")
#
SET(INSTALL_DOCDIR_STANDALONE "docs")
SET(INSTALL_DOCREADMEDIR_STANDALONE ".")
@@ -198,7 +198,7 @@ SET(INSTALL_SCRIPTDIR_SVR4 "scripts")
SET(INSTALL_LIBDIR_SVR4 "lib")
SET(INSTALL_PLUGINDIR_SVR4 "lib/plugin")
#
-SET(INSTALL_INCLUDEDIR_SVR4 "include")
+SET(INSTALL_INCLUDEDIR_SVR4 "include/mysql")
#
SET(INSTALL_DOCDIR_SVR4 "docs")
SET(INSTALL_DOCREADMEDIR_SVR4 ".")