From be17e39a02b0b0d1bfc06b0e7c39b97e4a1814fd Mon Sep 17 00:00:00 2001 From: Aaron Son Date: Wed, 30 Jul 2025 13:51:51 -0700 Subject: [PATCH] [no-release-notes] proto/Makefile: Fix the generation of _grpc.pb.go files. With the removal of the circular symlink in go/gen/proto/github.com, we need grpc-go_out path to be source relative as well. --- proto/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/Makefile b/proto/Makefile index d3cae7e12d..167a95d65e 100644 --- a/proto/Makefile +++ b/proto/Makefile @@ -68,7 +68,7 @@ $(call PROTOC_template,\ $(1),\ $(addprefix $(3)/$(2)/,$(notdir $(call PBGO_output,$(1)))),\ --go_out=paths=source_relative:$(3) \ - --go-grpc_out=$(3)) + --go-grpc_out=paths=source_relative:$(3)) endef $(foreach p,$(PBGO_pkgs),\