From: Masahiro Yamada Date: Thu, 20 Jan 2022 19:22:04 +0000 (+0900) Subject: certs: Fix build error when CONFIG_MODULE_SIG_KEY is PKCS#11 URI X-Git-Tag: v6.1-rc5~2139^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad29a2fb3c201ef066b0a9fe10a6e14dd0d59c48;p=platform%2Fkernel%2Flinux-starfive.git certs: Fix build error when CONFIG_MODULE_SIG_KEY is PKCS#11 URI When CONFIG_MODULE_SIG_KEY is PKCS#11 URL (pkcs11:*), signing_key.x509 fails to build: certs/Makefile:77: *** target pattern contains no '%'. Stop. Due to the typo, $(X509_DEP) contains a colon. Fix it. Fixes: b8c96a6b466c ("certs: simplify $(srctree)/ handling and remove config_filename macro") Signed-off-by: Masahiro Yamada --- diff --git a/certs/Makefile b/certs/Makefile index f7041c2..0c459cf 100644 --- a/certs/Makefile +++ b/certs/Makefile @@ -68,7 +68,7 @@ $(obj)/x509.genkey: endif # CONFIG_MODULE_SIG_KEY # If CONFIG_MODULE_SIG_KEY isn't a PKCS#11 URI, depend on it -ifneq ($(filter-out pkcs11:%, %(CONFIG_MODULE_SIG_KEY)),) +ifneq ($(filter-out pkcs11:%, $(CONFIG_MODULE_SIG_KEY)),) X509_DEP := $(CONFIG_MODULE_SIG_KEY) endif