From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.120]) by mx.groups.io with SMTP id smtpd.web11.21557.1574329130089279657 for ; Thu, 21 Nov 2019 01:38:50 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=NzJFOUWj; spf=pass (domain: redhat.com, ip: 207.211.31.120, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574329128; 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=sqZx1UaxY8swPsYuYNb5lrMQ+28wuSMGxHUqdiWswaI=; b=NzJFOUWjT907Esqyn1m0u60a/Z1yOSHHb8ZDke7Q/pICswF5PHx1WgTgD3wxocVlKilBD0 NVZXefp7+BHOo5GwZb23VuCfSEtYFiGxYm/ZUE8KlZiAUbpQ4pJNfbc7fxK0jNBcdZZvJo 8gWVfDrVRjDPAp6eIFXUeTY/+/cvyDE= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-11-HAtCH0bYOXmcZNadQYsMRg-1; Thu, 21 Nov 2019 04:38:44 -0500 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id EC74D1005502; Thu, 21 Nov 2019 09:38:42 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-116-197.ams2.redhat.com [10.36.116.197]) by smtp.corp.redhat.com (Postfix) with ESMTP id A3D8959D34; Thu, 21 Nov 2019 09:38:41 +0000 (UTC) From: "Laszlo Ersek" To: edk2-devel-groups-io Cc: Jian J Wang , Leif Lindholm , Shenglei Zhang , Xiaoyu Lu Subject: [PATCH 3/3] CryptoPkg/OpensslLib.inf: list OpenSSL local header "ms/uplink.h" Date: Thu, 21 Nov 2019 10:38:33 +0100 Message-Id: <20191121093833.13840-4-lersek@redhat.com> In-Reply-To: <20191121093833.13840-1-lersek@redhat.com> References: <20191121093833.13840-1-lersek@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-MC-Unique: HAtCH0bYOXmcZNadQYsMRg-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Commit 8906f076de35 ("CryptoPkg/OpensslLib: Add missing header files in INF file", 2019-08-16) incorrectly placed "ms/uplink.h" in the auto-generated part of [Sources], in "OpensslLib.inf". ("ms/uplink.h" was added in the right spot in "OpensslLibCrypto.inf".) Subsequently, when commit 9f4fbd56d430 ("CryptoPkg/OpensslLib: Update process_files.pl to generate .h files", 2019-10-30) re-generated that part of "OpensslLib.inf", the "ms/uplink.h" file reference was lost. This triggers a warning from the "build" utility now. Name the header file in the right spot in [Sources]. This change makes "OpensslLib.inf" consistent with "OpensslLibCrypto.inf". Cc: Jian J Wang Cc: Leif Lindholm Cc: Shenglei Zhang Cc: Xiaoyu Lu Fixes: 8906f076de35b222a7d62bcf6ed1a4a2498a5791 Signed-off-by: Laszlo Ersek --- Notes: Targeting edk2-stable201911. CryptoPkg/Library/OpensslLib/OpensslLib.inf | 1 + 1 file changed, 1 insertion(+) diff --git a/CryptoPkg/Library/OpensslLib/OpensslLib.inf b/CryptoPkg/Librar= y/OpensslLib/OpensslLib.inf index 58202f83118d..3fa52f554320 100644 --- a/CryptoPkg/Library/OpensslLib/OpensslLib.inf +++ b/CryptoPkg/Library/OpensslLib/OpensslLib.inf @@ -23,6 +23,7 @@ [Defines] =20 [Sources] $(OPENSSL_PATH)/e_os.h + $(OPENSSL_PATH)/ms/uplink.h # Autogenerated files list starts here $(OPENSSL_PATH)/crypto/aes/aes_cbc.c $(OPENSSL_PATH)/crypto/aes/aes_cfb.c --=20 2.19.1.3.g30247aa5d201