~ubuntu-branches/ubuntu/quantal/mysql-5.5/quantal-security

« back to all changes in this revision

Viewing changes to sql/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Seth Arnold
  • Date: 2013-04-18 18:15:39 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20130418181539-7uo1w041b4h2ulbs
Tags: 5.5.31-0ubuntu0.12.10.1
* SECURITY UPDATE: Update to 5.5.31 to fix security issues (LP: #1170516)
  - http://www.oracle.com/technetwork/topics/security/cpuapr2013-1899555.html
* debian/patches/71_disable_rpl_tests.patch: refreshed.
* debian/patches/fix-mysqldump-test.patch: removed, fixed differently
  upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
 
262
262
IF(INSTALL_LAYOUT STREQUAL "STANDALONE")
263
263
 
264
 
# We need to create empty directories (data/test) the installation.  
265
 
# This does not work with current CPack due to http://www.cmake.org/Bug/view.php?id=8767
266
 
# Avoid completely empty directories and install dummy file instead.
267
 
# Use a file extension so that it will be deleted in case someone does
268
 
#   'drop database test'
269
 
# See deletable_extentions.
270
 
SET(DUMMY_FILE ${CMAKE_CURRENT_BINARY_DIR}/dummy.bak ) 
271
 
FILE(WRITE ${DUMMY_FILE} "")
272
 
INSTALL(FILES ${DUMMY_FILE} DESTINATION data/test COMPONENT DataFiles)
 
264
# Copy db.opt into data/test/
 
265
SET(DBOPT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/db.opt ) 
 
266
INSTALL(FILES ${DBOPT_FILE} DESTINATION data/test COMPONENT DataFiles)
273
267
 
274
268
# Install initial database on windows
275
269
IF(NOT CMAKE_CROSSCOMPILING)