Skip to content

Commit 6170abb

Browse files
Muhammad Usama Anjumhansendc
authored andcommitted
selftests/sgx: Treat CC as one argument
CC can have multiple sub-strings like "ccache gcc". For check_cc.sh, CC needs to be treated like one argument. Put double quotes around it to make CC one string and hence one argument. Fixes: 2adcba7 ("selftests/x86: Add a selftest for SGX") Reported-by: "kernelci.org bot" <bot@kernelci.org> Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com> Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com> Link: https://lkml.kernel.org/r/20220214184109.3739179-3-usama.anjum@collabora.com
1 parent b06e15e commit 6170abb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/testing/selftests/sgx/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ include ../lib.mk
44

55
.PHONY: all clean
66

7-
CAN_BUILD_X86_64 := $(shell ../x86/check_cc.sh $(CC) \
7+
CAN_BUILD_X86_64 := $(shell ../x86/check_cc.sh "$(CC)" \
88
../x86/trivial_64bit_program.c)
99

1010
ifndef OBJCOPY

0 commit comments

Comments
 (0)