diff options
author | Junho Choi <junho@cloudflare.com> | 2019-08-12 11:40:32 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-12 22:36:27 +0200 |
commit | 1c86622699f79bde5fd31912564bf6e7f8e76636 (patch) | |
tree | fdbf5d7ee20d96750c002484f00c0780f95cdf18 /docs | |
parent | 49e6b3857fb65d93b40ff6591b57d855586a8d99 (diff) | |
download | curl-1c86622699f79bde5fd31912564bf6e7f8e76636.tar.gz |
docs/HTTP3: simplify quiche build instruction
Use --recursive to get boringssl in one line
Closes #4219
Diffstat (limited to 'docs')
-rw-r--r-- | docs/HTTP3.md | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/docs/HTTP3.md b/docs/HTTP3.md index 889659475..e6a8874c8 100644 --- a/docs/HTTP3.md +++ b/docs/HTTP3.md @@ -83,12 +83,8 @@ you'll just get ld.so linker errors. Clone quiche and BoringSSL: - % git clone https://github.com/cloudflare/quiche - % cd quiche/ - % mkdir deps - % cd deps - % git clone https://github.com/google/boringssl - % cd boringssl + % git clone --recursive https://github.com/cloudflare/quiche + % cd quiche/deps/boringssl Build BoringSSL (it needs to be built manually so it can be reused with curl): |