From 59970a606db314fd6b24cc6e00de054f7aebfb92 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 22 Jul 2025 23:07:37 -0700 Subject: [PATCH] images/Makefile: use msg-gen In general, we use "$(E)" instead of "$(Q) echo", but we also have a msg-gen macro which can be used here. Signed-off-by: Kir Kolyshkin --- images/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/Makefile b/images/Makefile index 6f310e553..2c33152e9 100644 --- a/images/Makefile +++ b/images/Makefile @@ -95,7 +95,7 @@ makefile-deps := Makefile $(obj)/Makefile DESCRIPTOR_DIR := images/google/protobuf GOOGLE_INCLUDE=$(shell pkg-config protobuf --variable=includedir)/google/protobuf $(DESCRIPTOR_DIR)/descriptor.pb-c.c: $(GOOGLE_INCLUDE)/descriptor.proto - $(Q) echo "Generating descriptor.pb-c.c" + $(call msg-gen, $@) $(Q) protoc --proto_path=/usr/include --proto_path=$(obj)/ --c_out=$(obj)/ $< cleanup-y += $(DESCRIPTOR_DIR)/descriptor.pb-c.d