Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVishal Tak <vtak@gitlab.com>2022-04-27 07:45:22 +0300
committerVishal Tak <vtak@gitlab.com>2022-04-27 09:14:52 +0300
commit21cfe26446f7862e2a65c9129ef573a1881f296d (patch)
tree172ae1116e1e076c133dc433b73b35bcc8f3e997 /Makefile.build.mk
parentf114a581206c07813031f20ca4dc47a9d8a2e045 (diff)
Use labkit for fips check
Changelog: changed
Diffstat (limited to 'Makefile.build.mk')
-rw-r--r--Makefile.build.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.build.mk b/Makefile.build.mk
index 915b1d02..ba672739 100644
--- a/Makefile.build.mk
+++ b/Makefile.build.mk
@@ -2,7 +2,7 @@ BINDIR := $(CURDIR)/bin
GO_BUILD_TAGS := continuous_profiler_stackdriver
FIPS_MODE ?= 0
ifeq ($(FIPS_MODE), 1)
- GO_BUILD_TAGS := $(GO_BUILD_TAGS),boringcrypto
+ GO_BUILD_TAGS := $(GO_BUILD_TAGS),fips
CGO_ENABLED := 1
endif