Makefile: fix cross-build comments

Signed-off-by: Gary Edgar <gary@planetscale.com>
This commit is contained in:
Gary Edgar 2021-06-02 09:18:19 -07:00
Родитель 3f1544cdac
Коммит ed5aa8e475
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -76,9 +76,9 @@ endif
# build vtorc with CGO, because it depends on sqlite # build vtorc with CGO, because it depends on sqlite
CGO_ENABLED=1 go install $(EXTRA_BUILD_FLAGS) $(VT_GO_PARALLEL) -ldflags "$(shell tools/build_version_flags.sh)" ./go/cmd/vtorc/... CGO_ENABLED=1 go install $(EXTRA_BUILD_FLAGS) $(VT_GO_PARALLEL) -ldflags "$(shell tools/build_version_flags.sh)" ./go/cmd/vtorc/...
# xbuild can be used to cross-compile Vitess client binaries # cross-build can be used to cross-compile Vitess client binaries
# Outside of select client binaries (namely vtctlclient & vtexplain), cross-compiled Vitess Binaries are not recommended for production deployments # Outside of select client binaries (namely vtctlclient & vtexplain), cross-compiled Vitess Binaries are not recommended for production deployments
# Usage: GOOS=darwin GOARCH=amd64 make xbuild # Usage: GOOS=darwin GOARCH=amd64 make cross-build
cross-build: cross-build:
ifndef NOBANNER ifndef NOBANNER
echo $$(date): Building source tree echo $$(date): Building source tree
@ -463,4 +463,4 @@ generate_ci_workflows:
cd test && go run ci_workflow_gen.go && cd .. cd test && go run ci_workflow_gen.go && cd ..
release-notes: release-notes:
go run ./go/tools/release-notes -from $(FROM) -to $(TO) go run ./go/tools/release-notes -from $(FROM) -to $(TO)