From 91e9d1725e6420d4d488c739d6d73e194dffd676 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Tue, 21 Jan 2020 08:16:29 -0800 Subject: [PATCH] fix(build): instruct users to use GOTAGS, not GOFLAGS GOFLAGS will _override_ all the flags. If we just want to set a tag e.g., enable OpenSSL, we should set GOTAGS=openssl. fixes https://github.com/ipfs/go-ipfs/issues/6622#issuecomment-576713181 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67272ffa4e5..c31119bcbd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -425,7 +425,7 @@ receiving multiple inbound connections per second. To enable openssl support, rebuild go-ipfs with: ```bash -> make build GOFLAGS=-tags=openssl +> make build GOTAGS=openssl ``` ### CoreAPI