From: Andrea Bolognani Date: Thu, 8 Oct 2015 06:35:29 +0000 (+0200) Subject: src: Include $(builddir)/util in the header search path X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=4e8032272f1704f7;p=people%2Fliuw%2Flibxenctrl-split%2Flibvirt.git src: Include $(builddir)/util in the header search path Since a9fe620372144db, we are generating virkeymaps.h at build time; however, we are not including $(builddir)/util in the header search path, so when doing a VPATH build the compiler is unable to locate the file. make[2]: Entering directory `/home/jenkins/libvirt/systems/libvirt-fedora-20/build/src' GEN util/virkeymaps.h ... CC util/libvirt_util_la-virkeycode.lo CC util/libvirt_util_la-virkeyfile.lo CC util/libvirt_util_la-virlockspace.lo CC util/libvirt_util_la-virlog.lo ../../src/util/virkeycode.c:27:24: fatal error: virkeymaps.h: No such file or directory #include "virkeymaps.h" ^ compilation terminated. --- diff --git a/src/Makefile.am b/src/Makefile.am index e4660eba1..01e816af8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -31,6 +31,7 @@ INCLUDES = -I../gnulib/lib \ -I../include \ -I$(top_srcdir)/include \ -I$(srcdir)/util \ + -I$(builddir)/util \ -DIN_LIBVIRT \ -Dabs_topbuilddir="\"$(abs_topbuilddir)\"" \ -Dabs_topsrcdir="\"$(abs_topsrcdir)\"" \