From 36ad654fc1d50ef536b79a15cf2f47652190c84d Mon Sep 17 00:00:00 2001 From: daywalker90 <8257956+daywalker90@users.noreply.github.com> Date: Tue, 26 Nov 2024 12:54:53 +0100 Subject: [PATCH] Makefile: ensure that cln-grpc depends on msggen generated rust files. Changelog-None --- plugins/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Makefile b/plugins/Makefile index 924c6ccb8..6edee9617 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -296,7 +296,7 @@ CLN_PLUGIN_EXAMPLES := \ CLN_PLUGIN_SRC = $(shell find plugins/src -name "*.rs") CLN_GRPC_PLUGIN_SRC = $(shell find plugins/grpc-plugin/src -name "*.rs") -target/${RUST_PROFILE}/cln-grpc: ${CLN_PLUGIN_SRC} ${CLN_GRPC_PLUGIN_SRC} $(MSGGEN_GEN_ALL) +target/${RUST_PROFILE}/cln-grpc: ${CLN_PLUGIN_SRC} ${CLN_GRPC_PLUGIN_SRC} $(MSGGEN_GENALL) cargo build ${CARGO_OPTS} --bin cln-grpc ifneq ($(RUST),0)