From addcebc7d08832d8fdc4c45379eb8e96eb08d840 Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Fri, 4 Aug 2017 18:12:13 +0100 Subject: [PATCH] tools: make wireshark build quiet Use $(AM_V_GEN) when running wireshark related tools Signed-off-by: Daniel P. Berrange --- tools/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index 3455214575..ffa8c3e19b 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -439,7 +439,7 @@ wireshark/src/packet-libvirt.c: wireshark/src/packet-libvirt.h \ wireshark/src/libvirt/protocol.h wireshark/src/plugin.c: wireshark/src/packet-libvirt.c - cd wireshark/src && \ + $(AM_V_GEN)cd wireshark/src && \ $(abs_top_srcdir)/tools/wireshark/util/make-dissector-reg \ . plugin packet-libvirt.c @@ -451,7 +451,7 @@ WS_DISSECTOR_PROTO_FILES = \ wireshark/src/libvirt/protocol.h: wireshark/util/genxdrstub.pl \ $(WS_DISSECTOR_PROTO_FILES) - $(MKDIR_P) wireshark/src/libvirt + $(AM_V_GEN)$(MKDIR_P) wireshark/src/libvirt && \ cd wireshark/src && \ LIBVIRT_VERSION=$(LIBVIRT_VERSION) \ $(PERL) $(abs_top_srcdir)/tools/wireshark/util/genxdrstub.pl \ -- GitLab