diff options
author | Laszlo Ersek <lersek@redhat.com> | 2019-07-19 17:31:01 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2019-07-23 00:20:30 +0200 |
commit | 9e55ce6b753460b940ad9a8ff74b606216da0b4c (patch) | |
tree | f97b97f2dce12c1bd4b309672944c9a86fa6ebc9 /CryptoPkg/Library | |
parent | 2a0168c7c0fd3f0bbf24479101e54271c1ae542a (diff) | |
download | edk2-9e55ce6b753460b940ad9a8ff74b606216da0b4c.tar.gz edk2-9e55ce6b753460b940ad9a8ff74b606216da0b4c.tar.bz2 edk2-9e55ce6b753460b940ad9a8ff74b606216da0b4c.zip |
CryptoPkg/BaseCryptLib: list module-internal header files in INF [Sources]
The BaseTools build feature introduced for TianoCore#1804 / in commit
1fa6699e6cd4 ("BaseTools: Add a checking for Sources section in INF file",
2019-06-10) logs some (non-fatal) warnings about unlisted internal header
files. List those files explicitly.
Note: header files are added in lexicographical order only if the
underlying INF file already keeps the [Sources] and [LibraryClasses]
sections in lexicographical order. Otherwise, header files are added in
rough "logical" order.
Cc: Jian Wang <jian.j.wang@intel.com>
Cc: Ting Ye <ting.ye@intel.com>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
Diffstat (limited to 'CryptoPkg/Library')
-rw-r--r-- | CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf | 1 | ||||
-rw-r--r-- | CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf | 1 | ||||
-rw-r--r-- | CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf b/CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf index 4c43537476..99dbad23ed 100644 --- a/CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf +++ b/CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf @@ -34,6 +34,7 @@ #
[Sources]
+ InternalCryptLib.h
Hash/CryptMd4Null.c
Hash/CryptMd5.c
Hash/CryptSha1.c
diff --git a/CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf b/CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf index a59079d99e..0e58d2b5b0 100644 --- a/CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf +++ b/CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf @@ -33,6 +33,7 @@ #
[Sources]
+ InternalCryptLib.h
Hash/CryptMd4Null.c
Hash/CryptMd5.c
Hash/CryptSha1.c
diff --git a/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf b/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf index 3fd7d65abf..c79f2bf4c6 100644 --- a/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf +++ b/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf @@ -33,6 +33,7 @@ #
[Sources]
+ InternalCryptLib.h
Hash/CryptMd4Null.c
Hash/CryptMd5.c
Hash/CryptSha1.c
|