From f229bb56b73487758ed9bd9c7f0a4cc74134992b Mon Sep 17 00:00:00 2001 From: Petr Spacek Date: Wed, 2 Nov 2016 19:57:00 +0100 Subject: Build: fix distribution of daemons/ipa-slapi-plugins/topology files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All the headers are now listed in _SOURCES variable. It seems weird but this is what GNU Automake manual suggests in section 9.2 Header files: Headers used by programs or convenience libraries are not installed. The noinst_HEADERS variable can be used for such headers. However when the header actually belongs to a single convenience library or program, we recommend listing it in the program’s or library’s _SOURCES variable (see Program Sources) instead of in noinst_HEADERS. This is clearer for the Makefile.am reader. noinst_HEADERS would be the right variable to use in a directory containing only headers and no associated library or program. https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Martin Basti Reviewed-By: Christian Heimes --- daemons/ipa-slapi-plugins/topology/Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'daemons') diff --git a/daemons/ipa-slapi-plugins/topology/Makefile.am b/daemons/ipa-slapi-plugins/topology/Makefile.am index d2d8695e4..11fb02aa0 100644 --- a/daemons/ipa-slapi-plugins/topology/Makefile.am +++ b/daemons/ipa-slapi-plugins/topology/Makefile.am @@ -21,6 +21,7 @@ plugin_LTLIBRARIES = \ $(NULL) libtopology_la_SOURCES = \ + topology.h \ topology_agmt.c \ topology_init.c \ topology_cfg.c \ -- cgit