Skip to content

Commit 9d17b47

Browse files
committed
sched/mqueue/CMakeLists.txt: fix compilation for CONFIG_DISABLE_MQUEUE_SYSV=n
fix compilation for CONFIG_DISABLE_MQUEUE_SYSV=n in cmake
1 parent 8f435a2 commit 9d17b47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sched/mqueue/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
set(SRCS)
2424

25-
if(NOT CONFIG_DISABLE_MQUEUE OR NOT CONFIG_DISABLE_MQUEUE)
25+
if(NOT CONFIG_DISABLE_MQUEUE OR NOT CONFIG_DISABLE_MQUEUE_SYSV)
2626
list(APPEND SRCS mq_initialize.c mq_waitirq.c mq_recover.c)
2727
endif()
2828

0 commit comments

Comments
 (0)