mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
maint: avoid incremental 'make syntax-check' failure
Incrementally running 'make syntax-check' on a tree previously built after commit 62dee6f but before 44036460 fails sc_po_check (because the generated qemu_dispatch.h gained translatable strings). This is a followup to commit addaa537 for that scenario. * cfg.mk (sc_po_check): Add another prereq. ($(srcdir)/daemon/qemu_dispatch.h): Add rule.
This commit is contained in:
parent
52312385c0
commit
0583825f3c
10
cfg.mk
10
cfg.mk
@ -606,11 +606,15 @@ _autogen:
|
|||||||
syntax-check: $(top_srcdir)/HACKING
|
syntax-check: $(top_srcdir)/HACKING
|
||||||
|
|
||||||
# sc_po_check can fail if generated files are not built first
|
# sc_po_check can fail if generated files are not built first
|
||||||
sc_po_check: $(srcdir)/daemon/remote_dispatch.h \
|
sc_po_check: \
|
||||||
|
$(srcdir)/daemon/remote_dispatch.h \
|
||||||
|
$(srcdir)/daemon/qemu_dispatch.h \
|
||||||
$(srcdir)/src/remote/remote_client_bodies.h
|
$(srcdir)/src/remote/remote_client_bodies.h
|
||||||
$(srcdir)/daemon/remote_dispatch.h:
|
$(srcdir)/daemon/remote_dispatch.h: $(srcdir)/src/remote/remote_protocol.x
|
||||||
$(MAKE) -C daemon remote_dispatch.h
|
$(MAKE) -C daemon remote_dispatch.h
|
||||||
$(srcdir)/src/remote/remote_client_bodies.h:
|
$(srcdir)/daemon/qemu_dispatch.h: $(srcdir)/src/remote/qemu_protocol.x
|
||||||
|
$(MAKE) -C daemon qemu_dispatch.h
|
||||||
|
$(srcdir)/src/remote/remote_client_bodies.h: $(srcdir)/src/remote/remote_protocol.x
|
||||||
$(MAKE) -C src remote/remote_client_bodies.h
|
$(MAKE) -C src remote/remote_client_bodies.h
|
||||||
|
|
||||||
# List all syntax-check exemptions:
|
# List all syntax-check exemptions:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user