From 3b019a241a72742c7f239965ed92385e9ffd9ed3 Mon Sep 17 00:00:00 2001 From: Sedat Dilek Date: Fri, 27 May 2022 09:25:45 +0200 Subject: [PATCH] extract-cert: Suppress warnings with OpenSSL v3 API Signed-off-by: Sedat Dilek --- certs/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/certs/Makefile b/certs/Makefile index d8443cfb1c40..52f71f0925e2 100644 --- a/certs/Makefile +++ b/certs/Makefile @@ -75,4 +75,5 @@ targets += x509_revocation_list hostprogs := extract-cert HOSTCFLAGS_extract-cert.o = $(shell pkg-config --cflags libcrypto 2> /dev/null) +HOSTCFLAGS_extract-cert.o += -Wno-deprecated-declarations HOSTLDLIBS_extract-cert = $(shell pkg-config --libs libcrypto 2> /dev/null || echo -lcrypto) -- 2.36.1