From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mx.groups.io with SMTP id smtpd.web11.13340.1638547724182061190 for ; Fri, 03 Dec 2021 08:08:44 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=HTYUNi/4; spf=pass (domain: redhat.com, ip: 170.10.129.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1638547723; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Boo9mqpk+hzzNlBJj9R02spQCsk+9psf1qQBZIW2pjc=; b=HTYUNi/4Z/mxEZu0XCi4MfQ4ikf5pDu83FMrV4W2OcpyH6tJ5E/OZ+kx4Xr6txrO1ZT2fw Xep25r+7dK0B+cJ3Qt6TP55T8dQXnMYl6tqWi9no1yg0rnNyJp8Dj/7L2P8bJPOXdWWe/X ZFuJL77/I0afbBQrGcSitd00Vs5qoCk= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-569-HxEApxIWMWyE-5_dZHvzsw-1; Fri, 03 Dec 2021 11:08:40 -0500 X-MC-Unique: HxEApxIWMWyE-5_dZHvzsw-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 0937684B9A5; Fri, 3 Dec 2021 16:08:39 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.193.170]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0F30F100EBBF; Fri, 3 Dec 2021 16:08:31 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id D625618003A1; Fri, 3 Dec 2021 17:07:48 +0100 (CET) From: "Gerd Hoffmann" To: devel@edk2.groups.io Cc: Jiewen Yao , Jian J Wang , Guomin Jiang , Pawel Polawski , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Xiaoyu Lu , Gerd Hoffmann Subject: [PATCH 07/24] CryptoPkg/openssl: process_files.pl: skip unused files Date: Fri, 3 Dec 2021 17:07:31 +0100 Message-Id: <20211203160748.866150-8-kraxel@redhat.com> In-Reply-To: <20211203160748.866150-1-kraxel@redhat.com> References: <20211203160748.866150-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=kraxel@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" File names are different in openssl 3.0, so add a few new lines to catch the new names too. Signed-off-by: Gerd Hoffmann --- CryptoPkg/Library/OpensslLib/process_files.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CryptoPkg/Library/OpensslLib/process_files.pl b/CryptoPkg/Library/OpensslLib/process_files.pl index 7ac7d80b16ff..5cf491b4abf0 100755 --- a/CryptoPkg/Library/OpensslLib/process_files.pl +++ b/CryptoPkg/Library/OpensslLib/process_files.pl @@ -251,6 +251,9 @@ foreach my $product ((@{$unified_info{libraries}}, next if $s =~ "crypto/err/err_all.c"; next if $s =~ "crypto/aes/aes_ecb.c"; + next if $s =~ "crypto/bio/bio_print.c"; + next if $s =~ "providers/implementations/storemgmt/"; + if ($unified_info{generate}->{$s}) { if (defined $arch) { my $buildstring = "perl"; -- 2.33.1