diff options
author | Rolf Eike Beer <eb@emlix.com> | 2021-03-04 08:26:28 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-03-07 11:25:55 +0100 |
commit | 0073d6fd611a57eb2066395ec5bb53befa65e579 (patch) | |
tree | 173128f23167ce6b6061ee8b90483573269fafd8 /scripts | |
parent | afba2aabafe12a5849470f6e8d2d67017a17c528 (diff) | |
download | linux-stable-0073d6fd611a57eb2066395ec5bb53befa65e579.tar.gz linux-stable-0073d6fd611a57eb2066395ec5bb53befa65e579.tar.bz2 linux-stable-0073d6fd611a57eb2066395ec5bb53befa65e579.zip |
scripts: set proper OpenSSL include dir also for sign-file
commit fe968c41ac4f4ec9ffe3c4cf16b72285f5e9674f upstream.
Fixes: 2cea4a7a1885 ("scripts: use pkg-config to locate libcrypto")
Signed-off-by: Rolf Eike Beer <eb@emlix.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index 832a1d08e846..9116feaacee2 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -26,6 +26,7 @@ hostprogs-$(CONFIG_SYSTEM_EXTRA_CERTIFICATE) += insert-sys-cert HOSTCFLAGS_sortextable.o = -I$(srctree)/tools/include HOSTCFLAGS_asn1_compiler.o = -I$(srctree)/include +HOSTCFLAGS_sign-file.o = $(CRYPTO_CFLAGS) HOSTLOADLIBES_sign-file = $(CRYPTO_LIBS) HOSTCFLAGS_extract-cert.o = $(CRYPTO_CFLAGS) HOSTLOADLIBES_extract-cert = $(CRYPTO_LIBS) |