diff options
author | Muhammad Usama Anjum <[email protected]> | 2022-02-14 23:41:09 +0500 |
---|---|---|
committer | Dave Hansen <[email protected]> | 2022-02-17 11:55:17 -0800 |
commit | 6170abb21e2380477080b25145da9747ad467d3d (patch) | |
tree | aeb8dcb02bd91b27a95dea9c640b600aac0ce496 | |
parent | b06e15ebd5bfb670f93c7f11a29b8299c1178bc6 (diff) |
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: 2adcba79e69d ("selftests/x86: Add a selftest for SGX")
Reported-by: "kernelci.org bot" <[email protected]>
Signed-off-by: Muhammad Usama Anjum <[email protected]>
Signed-off-by: Dave Hansen <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r-- | tools/testing/selftests/sgx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/sgx/Makefile b/tools/testing/selftests/sgx/Makefile index 2956584e1e37..75af864e07b6 100644 --- a/tools/testing/selftests/sgx/Makefile +++ b/tools/testing/selftests/sgx/Makefile @@ -4,7 +4,7 @@ include ../lib.mk .PHONY: all clean -CAN_BUILD_X86_64 := $(shell ../x86/check_cc.sh $(CC) \ +CAN_BUILD_X86_64 := $(shell ../x86/check_cc.sh "$(CC)" \ ../x86/trivial_64bit_program.c) ifndef OBJCOPY |