diff options
author | Long Qin <qin.long@intel.com> | 2018-04-12 10:50:30 +0800 |
---|---|---|
committer | Long Qin <qin.long@intel.com> | 2018-04-15 21:07:38 +0800 |
commit | a701ea0fe1d5178eb4fd2659d83461751cb9e7c9 (patch) | |
tree | 760e4caca2f8ae7fb5be9182b01fd03febf1eab7 /CryptoPkg/Library | |
parent | e7df35b2bc53aecaca0792398f5d0ad163e50abb (diff) | |
download | edk2-a701ea0fe1d5178eb4fd2659d83461751cb9e7c9.tar.gz edk2-a701ea0fe1d5178eb4fd2659d83461751cb9e7c9.tar.bz2 edk2-a701ea0fe1d5178eb4fd2659d83461751cb9e7c9.zip |
CryptoPkg/OpensslLib: Fix the documentation about submodule update
This patch is to drop "--remote" option from the original suggested
submodule update command ("$ git submodule update --recursive
--remote") in HOWTO document.
"--remote" option will integrate changes from the upstream subproject
with the submodules's "current HEAD", instead of using the edk2
superproject's "recorded SHA-1".
It is important here for the edk2 consumers to updating the working
tree of the submodules to match the commit / release tag that the
superproject expects. So removing "--remote" option to fix this
documentation issue here.
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Ye Ting <ting.ye@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Long Qin <qin.long@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'CryptoPkg/Library')
-rw-r--r-- | CryptoPkg/Library/OpensslLib/OpenSSL-HOWTO.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CryptoPkg/Library/OpensslLib/OpenSSL-HOWTO.txt b/CryptoPkg/Library/OpensslLib/OpenSSL-HOWTO.txt index ac63d4c077..36f8e711dd 100644 --- a/CryptoPkg/Library/OpensslLib/OpenSSL-HOWTO.txt +++ b/CryptoPkg/Library/OpensslLib/OpenSSL-HOWTO.txt @@ -40,7 +40,7 @@ or And use the following combined commands to pull the remote submodule updates
(e.g. Updating the new supported OpenSSL release tag):
$ git pull --recurse-submodules && \
- git submodule update --recursive --remote
+ git submodule update --recursive
=============================================================================
About process_files.pl
|