Re: [libvirt] [PATCH] daemon: trigger RPC re-generation when Makefile.am changes

2018-02-20 Thread Pavel Hrdina
On Mon, Feb 19, 2018 at 04:50:12PM +, Daniel P. Berrangé wrote:
> The src/Makefile.am rules all re-generate the RPC dispatch code whenever
> the Makefile.am changes, so for consistency do that for
> daemon/Makefile.am too.
> 
> Signed-off-by: Daniel P. Berrangé 
> ---
>  daemon/Makefile.am | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Reviewed-by: Pavel Hrdina 


signature.asc
Description: PGP signature
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

[libvirt] [PATCH] daemon: trigger RPC re-generation when Makefile.am changes

2018-02-19 Thread Daniel P . Berrangé
The src/Makefile.am rules all re-generate the RPC dispatch code whenever
the Makefile.am changes, so for consistency do that for
daemon/Makefile.am too.

Signed-off-by: Daniel P. Berrangé 
---
 daemon/Makefile.am | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index 77dfd8943a..42d8f7b3fd 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -92,19 +92,19 @@ QEMU_PROTOCOL = $(top_srcdir)/src/remote/qemu_protocol.x
 ADMIN_PROTOCOL = $(top_srcdir)/src/admin/admin_protocol.x
 
 remote_dispatch.h: $(top_srcdir)/src/rpc/gendispatch.pl \
-   $(REMOTE_PROTOCOL)
+   $(REMOTE_PROTOCOL) Makefile.am
$(AM_V_GEN)$(PERL) -w $(top_srcdir)/src/rpc/gendispatch.pl \
  --mode=server remote REMOTE $(REMOTE_PROTOCOL) \
  > $(srcdir)/remote_dispatch.h
 
 lxc_dispatch.h: $(top_srcdir)/src/rpc/gendispatch.pl \
-   $(LXC_PROTOCOL)
+   $(LXC_PROTOCOL) Makefile.am
$(AM_V_GEN)$(PERL) -w $(top_srcdir)/src/rpc/gendispatch.pl \
  --mode=server lxc LXC $(LXC_PROTOCOL) \
  > $(srcdir)/lxc_dispatch.h
 
 qemu_dispatch.h: $(top_srcdir)/src/rpc/gendispatch.pl \
-   $(QEMU_PROTOCOL)
+   $(QEMU_PROTOCOL) Makefile.am
$(AM_V_GEN)$(PERL) -w $(top_srcdir)/src/rpc/gendispatch.pl \
  --mode=server qemu QEMU $(QEMU_PROTOCOL) \
  > $(srcdir)/qemu_dispatch.h
-- 
2.14.3

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list