diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-06-06 14:15:29 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-06-06 14:15:29 +0200 |
commit | 38c4ef63b862fd59b4285fc3bfd9f5dff536649d (patch) | |
tree | d3717570d38fd0c19d5bd9bb23b12134aa5a5e3a /CMakeLists.txt | |
parent | b14d3adad9d10a8575bebca7e7af0ff7ef9f71b1 (diff) | |
download | mariadb-git-38c4ef63b862fd59b4285fc3bfd9f5dff536649d.tar.gz |
MDEV-302 lp:988204 MariaDB 5.5.23 binaries don't use libaio
simplify debian/dist/*/rules slightly.
move hard-coded config value to cmake files.
(the actual fix is -DBUILD_CONFIG=mysql_release)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8b0c4898785..2599a025e27 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -131,6 +131,10 @@ IF (NOT CPACK_GENERATOR) ENDIF(WIN32) ENDIF(NOT CPACK_GENERATOR) +IF(DEB) + SET(INSTALL_LAYOUT "DEB") +ENDIF(DEB) + INCLUDE(mysql_version) INCLUDE(cpack_rpm) INCLUDE(cpack_source_ignore_files) |