Skip to content

Commit 36d3838

Browse files
committed
scx: Add missing ) to $(error) invocation in Makefile
We're missing a closing ) on a branch that we never take. Let's close it just for correctness. Signed-off-by: David Vernet <[email protected]>
1 parent 5bb3614 commit 36d3838

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/sched_ext/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ CLANG_TARGET_FLAGS := $(CLANG_TARGET_FLAGS_$(ARCH))
2626

2727
ifeq ($(CROSS_COMPILE),)
2828
ifeq ($(CLANG_TARGET_FLAGS),)
29-
$(error Specify CROSS_COMPILE or add '--target=' option to lib.mk
29+
$(error Specify CROSS_COMPILE or add '--target=' option to lib.mk)
3030
else
3131
CLANG_FLAGS += --target=$(CLANG_TARGET_FLAGS)
3232
endif # CLANG_TARGET_FLAGS

0 commit comments

Comments
 (0)