[Tarantool-patches] [PATCH v1] build: fix build after commit 7b443650

Alexander V. Tikhonov avtikhon at tarantool.org
Fri Apr 17 17:09:47 MSK 2020


Found that some package builds failed on the mistake in CMakeLists.txt
file, the failed packages and test builds were:
- CentOS 6
- CentOS 7
- Ubuntu 14.04
and static build based on Dockerfile.
The core of the issue appeared to be single backslash instead of double
at the comment in CMakeLists.txt file, which should pass the cmake
syntax rules.

Follow up #3308
---

Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-3308-fix-commit-full-ci

 src/box/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/box/CMakeLists.txt b/src/box/CMakeLists.txt
index 5ed7eaead..d4abccc82 100644
--- a/src/box/CMakeLists.txt
+++ b/src/box/CMakeLists.txt
@@ -3,7 +3,7 @@ file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/src/box/lua)
 # Sometimes 'spying' code is not acceptable even if it would be
 # disabled by default. That option allows to remove the feedback
 # daemon from the build completely.
-option(ENABLE_FEEDBACK_DAEMON "Feedback daemon which reports debug data to \
+option(ENABLE_FEEDBACK_DAEMON "Feedback daemon which reports debug data to \\
 the Tarantool team" ON)
 
 add_subdirectory(sql)
-- 
2.17.1



More information about the Tarantool-patches mailing list