From: Michal Privoznik Date: Sat, 30 Jan 2016 10:55:45 +0000 (+0100) Subject: includes: Install libvirt-common.h X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=a70f3b1c77912012905c6c5be3bf37b05592e80f;p=libvirt.git includes: Install libvirt-common.h The libvirt-common.h is build time generated file from .in. Obviously, it's generated into builddir and not srcdir. Problem is, the list of header files to install, virinc_HEADERS contains only $(srcdir)/*.h and this misses libvirt-common.h. This problem is pretty obvious when doing a VPATH build. Signed-off-by: Michal Privoznik --- diff --git a/include/Makefile.am b/include/Makefile.am index d6269632a5..6b0b41e572 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -20,6 +20,7 @@ virincdir = $(includedir)/libvirt allheaders = $(wildcard $(srcdir)/libvirt/*.h) virinc_HEADERS = $(filter-out $(srcdir)/libvirt/libvirt-admin.h, $(allheaders)) +virinc_HEADERS += libvirt/libvirt-common.h EXTRA_DIST = libvirt/libvirt-common.h.in