From b6238b82863c690215472b5f4eb2049b12745a0a Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 30 Apr 2015 14:02:30 +1000 Subject: [PATCH] tools: fix broken build if builddir != srcdir Introduced in 6b6f8151a41147eb44d08f33de143b43eb004563, libinput-version.h is in the builddir. Signed-off-by: Peter Hutterer Reviewed-by: Hans de Goede --- tools/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index ae3a27f..792f310 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -3,8 +3,8 @@ bin_PROGRAMS = libinput-list-devices noinst_LTLIBRARIES = libshared.la AM_CPPFLAGS = -I$(top_srcdir)/include \ - -I$(top_srcdir)/src - + -I$(top_srcdir)/src \ + -I$(top_builddir)/src # for libinput-version.h libshared_la_SOURCES = \ shared.c \ -- 2.7.4