diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-07-16 19:09:54 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-07-16 19:09:54 +0200 |
commit | 005c7e54214546584c8dc67a746e215f8dbe4b58 (patch) | |
tree | dea50cd7b32808413e058d43d20cf230d1cc7477 /sql-bench | |
parent | b9f220b45afaae9b61af29129a8c8ec5f9a7759b (diff) | |
parent | 4f5c10e6b565bc2761b9d083e25c6a36141552a0 (diff) | |
download | mariadb-git-005c7e54214546584c8dc67a746e215f8dbe4b58.tar.gz |
mysql-5.5.32 merge
Diffstat (limited to 'sql-bench')
-rw-r--r-- | sql-bench/CMakeLists.txt | 46 | ||||
-rwxr-xr-x[-rw-r--r--] | sql-bench/example.bat | 0 | ||||
-rwxr-xr-x[-rw-r--r--] | sql-bench/pwd.bat | 0 | ||||
-rwxr-xr-x[-rw-r--r--] | sql-bench/uname.bat | 0 |
4 files changed, 27 insertions, 19 deletions
diff --git a/sql-bench/CMakeLists.txt b/sql-bench/CMakeLists.txt index ae05d30530d..a837746bb98 100644 --- a/sql-bench/CMakeLists.txt +++ b/sql-bench/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -38,26 +38,34 @@ FILE(GLOB all_files ${CMAKE_CURRENT_SOURCE_DIR}/*) FOREACH(file ${all_files}) IF(NOT IS_DIRECTORY ${file} AND NOT ${file} MATCHES "Make|as3ap|/example$" ) - GET_FILENAME_COMPONENT(ext ${file} EXT) - GET_FILENAME_COMPONENT(name ${file} NAME) - SET(target ${name}) - IF(ext MATCHES ".sh$") - # Those are perl files actually - STRING(REPLACE ".sh" "" target ${target} ) - IF(WIN32) - IF(NOT ext MATCHES ".pl") - SET(target "${target}.pl") + GET_FILENAME_COMPONENT(ext ${file} EXT) + GET_FILENAME_COMPONENT(name ${file} NAME) + SET(target ${name}) + IF(ext MATCHES ".sh$") + # Those are perl files actually + STRING(REPLACE ".sh" "" target ${target} ) + IF(WIN32) + IF(NOT ext MATCHES ".pl") + SET(target "${target}.pl") + ENDIF() ENDIF() ENDIF() - ENDIF() - SET(target "${CMAKE_CURRENT_BINARY_DIR}/${target}") - CONFIGURE_FILE(${file} ${target} COPYONLY) - IF (ext MATCHES ".bat") - IF(WIN32) - INSTALL(FILES ${target} DESTINATION ${prefix}sql-bench COMPONENT SqlBench) + SET(target "${CMAKE_CURRENT_BINARY_DIR}/${target}") + CONFIGURE_FILE(${file} ${target} COPYONLY) + IF (UNIX AND NOT ${name} MATCHES "README") + EXECUTE_PROCESS(COMMAND chmod +x ${target}) + ENDIF() + IF (ext MATCHES ".bat") + IF(WIN32) + INSTALL(PROGRAMS ${target} + DESTINATION ${prefix}sql-bench COMPONENT SqlBench) + ENDIF() + ELSEIF(name MATCHES "README") + INSTALL(FILES ${target} + DESTINATION ${prefix}sql-bench COMPONENT SqlBench) + ELSE() + INSTALL(PROGRAMS ${target} + DESTINATION ${prefix}sql-bench COMPONENT SqlBench) ENDIF() - ELSE() - INSTALL(FILES ${target} DESTINATION ${prefix}sql-bench COMPONENT SqlBench) - ENDIF() ENDIF() ENDFOREACH() diff --git a/sql-bench/example.bat b/sql-bench/example.bat index 5bc1b458008..5bc1b458008 100644..100755 --- a/sql-bench/example.bat +++ b/sql-bench/example.bat diff --git a/sql-bench/pwd.bat b/sql-bench/pwd.bat index 104fd349d4e..104fd349d4e 100644..100755 --- a/sql-bench/pwd.bat +++ b/sql-bench/pwd.bat diff --git a/sql-bench/uname.bat b/sql-bench/uname.bat index dd9fe012a3d..dd9fe012a3d 100644..100755 --- a/sql-bench/uname.bat +++ b/sql-bench/uname.bat |