From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.115, mailfrom: xiaoyux.lu@intel.com) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by groups.io with SMTP; Wed, 19 Jun 2019 00:21:55 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Jun 2019 00:21:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,392,1557212400"; d="scan'208";a="153724030" Received: from xiaoyu-dev.sh.intel.com ([10.239.47.11]) by orsmga008.jf.intel.com with ESMTP; 19 Jun 2019 00:21:53 -0700 From: "Xiaoyu Lu" To: devel@edk2.groups.io Cc: Xiaoyu Lu , Laszlo Ersek , Jian J Wang , Ting Ye Subject: [PATCH v1 1/1] CryptoPkg/OpensslLib: Exclude err_all.c in process_files.py Date: Wed, 19 Jun 2019 03:19:21 -0400 Message-Id: <1560928761-1867-1-git-send-email-xiaoyux.lu@intel.com> X-Mailer: git-send-email 2.7.4 REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1881 Commit(0a1b13fd4d2210e2c3) fix VS2017 build failure remove useless file in OpensslLib[Crypto].inf, but we use process_files.py to generate files. So exclude err_all.c file in process_files.py Cc: Jian J Wang Cc: Ting Ye Signed-off-by: Xiaoyu Lu --- CryptoPkg/Library/OpensslLib/process_files.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/CryptoPkg/Library/OpensslLib/process_files.pl b/CryptoPkg/Library/OpensslLib/process_files.pl index e277108f0734..2783ff54f95a 100755 --- a/CryptoPkg/Library/OpensslLib/process_files.pl +++ b/CryptoPkg/Library/OpensslLib/process_files.pl @@ -132,6 +132,7 @@ foreach my $product ((@{$unified_info{libraries}}, # So it can reduce porting time, compile time, library size. next if $s =~ "crypto/rand/randfile.c"; next if $s =~ "crypto/store/"; + next if $s =~ "crypto/err/err_all.c"; if ($product =~ "libssl") { push @sslfilelist, ' $(OPENSSL_PATH)/' . $s . "\r\n"; -- 2.7.4