diff options
author | Joerg Bruehe <joerg.bruehe@oracle.com> | 2012-06-11 20:30:04 +0200 |
---|---|---|
committer | Joerg Bruehe <joerg.bruehe@oracle.com> | 2012-06-11 20:30:04 +0200 |
commit | 6608ea8f9b31952a02d92e15c12679574a6c7001 (patch) | |
tree | d38d92186a36329a3467ea22aaa4fc3e2302ef62 | |
parent | fd4697ff3c66d162bea4ac8f25cc85cd82d88b36 (diff) | |
download | mariadb-git-6608ea8f9b31952a02d92e15c12679574a6c7001.tar.gz |
cmake syntax error: missed ${...}
-rw-r--r-- | SPECIFIC-ULN/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SPECIFIC-ULN/CMakeLists.txt b/SPECIFIC-ULN/CMakeLists.txt index 3efc1a2960b..2980263379a 100644 --- a/SPECIFIC-ULN/CMakeLists.txt +++ b/SPECIFIC-ULN/CMakeLists.txt @@ -24,14 +24,14 @@ IF(UNIX) ENDIF() # Left in current directory, to be taken during build - CONFIGURE_FILE(mysql.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/SPECIFIC-ULN/${SPECFILENAME} @ONLY) + CONFIGURE_FILE(mysql.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/${SPECFILENAME} @ONLY) FOREACH(ulnfile filter-requires-mysql.sh generate-tarball.sh my.cnf my_config.h mysql-5.5-errno.patch mysql-5.5-fix-tests.patch mysql-5.5-libdir.patch mysql-5.5-mtr1.patch mysql-5.5-stack-guard.patch mysql-5.5-testing.patch mysql-chain-certs.patch mysql-embedded-check.c mysql-expired-certs.patch mysql.init mysql-install-test.patch mysql-strmov.patch scriptstub.c) - INSTALL(FILES ulnfile DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/SPECIFIC-ULN) + INSTALL(FILES ${ulnfile} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) ENDFOREACH() ENDIF() |