This is an automated email from the ASF dual-hosted git repository.
asekretenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new 3d68993 Fixed setting LIBPROCESS_ALLOW_JEMALLOC in Linux cmake build.
3d68993 is described below
commit 3d68993c8743231b6067738050786e750edda9b1
Author: Andrei Sekretenko <[email protected]>
AuthorDate: Fri May 29 20:05:26 2020 +0200
Fixed setting LIBPROCESS_ALLOW_JEMALLOC in Linux cmake build.
Review: https://reviews.apache.org/r/72556
---
3rdparty/libprocess/src/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/3rdparty/libprocess/src/CMakeLists.txt
b/3rdparty/libprocess/src/CMakeLists.txt
index ab63606..d1ad7c1 100644
--- a/3rdparty/libprocess/src/CMakeLists.txt
+++ b/3rdparty/libprocess/src/CMakeLists.txt
@@ -125,7 +125,7 @@ target_compile_definitions(
$<$<BOOL:${ENABLE_LOCK_FREE_RUN_QUEUE}>:LOCK_FREE_RUN_QUEUE>
$<$<BOOL:${ENABLE_LOCK_FREE_EVENT_QUEUE}>:LOCK_FREE_EVENT_QUEUE>
$<$<BOOL:${ENABLE_LAST_IN_FIRST_OUT_FIXED_SIZE_SEMAPHORE}>:LAST_IN_FIRST_OUT_FIXED_SIZE_SEMAPHORE>
- $<$<PLATFORM_ID:LINUX>:LIBPROCESS_ALLOW_JEMALLOC>)
+ $<$<PLATFORM_ID:Linux>:LIBPROCESS_ALLOW_JEMALLOC>)
target_include_directories(process PUBLIC ../include)
target_include_directories(process PRIVATE .)