Skip to content

Commit c03d1be

Browse files
committed
Makefile: fix 'install-*' targets.
Fix install-* Makefile targets to properly install/compile the various protoc toolchain binaries and plugins. Signed-off-by: Krisztian Litkey <[email protected]>
1 parent 76ad849 commit c03d1be

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,13 +165,13 @@ golangci-lint:
165165
#
166166

167167
install-protoc install-protobuf:
168-
$(Q)./scripts/install-protobuf && \
168+
$(Q)./scripts/install-protobuf
169169

170170
install-ttrpc-plugin:
171-
$(Q)$(GO_INSTALL) github.com/containerd/ttrpc/cmd/protoc-gen-go-ttrpc@74421d10189e8c118870d294c9f7f62db2d33ec1
171+
$(Q)$(GO_INSTALL) -mod=mod github.com/containerd/ttrpc/cmd/protoc-gen-go-ttrpc@74421d10189e8c118870d294c9f7f62db2d33ec1
172172

173173
install-protoc-dependencies:
174-
$(Q)$(GO_INSTALL) google.golang.org/protobuf/cmd/[email protected]
174+
$(Q)$(GO_INSTALL) -mod=mod google.golang.org/protobuf/cmd/[email protected]
175175

176176
install-ginkgo:
177177
$(Q)$(GO_INSTALL) -mod=mod github.com/onsi/ginkgo/v2/ginkgo

0 commit comments

Comments
 (0)