
On 02/21/2018 04:35 PM, Daniel P. Berrangé wrote:
Remove lots of duplication in the sysconfig file handling, so we can add more conf files without modifying so many places.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> --- src/Makefile.am | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am index de2441dd6b..bb51be50d7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2683,23 +2683,30 @@ EXTRA_DIST += $(LOCK_DAEMON_SOURCES) \ $(LOG_DAEMON_SOURCES) endif ! WITH_LIBVIRTD
-EXTRA_DIST += \ +SYSCONF_FILES = \ locking/virtlockd.sysconf \ + logging/virtlogd.sysconf \ + $(NULL) + +EXTRA_DIST += \ locking/lockd.conf \ locking/libvirt_lockd.aug \ - locking/test_libvirt_lockd.aug.in \ - logging/virtlogd.sysconf + locking/test_libvirt_lockd.aug.in
I guess you wanted to add $(SYSCONF_FILES) to EXTRA_DIST too. Michal