From 7cd047b75da45c3cfbae930da947e392adada24b Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Thu, 4 Oct 2012 12:09:53 +0200 Subject: [PATCH] build,plugins: include missing builddir in CPPFLAGS Built files in the ModemManager daemon (e.g. mm-serial-enums-types.[c|h]) will be available in ${top_builddir}/src, not in ${top_srcdir}/src. --- plugins/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 51dc22a7..c1d63dce 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -6,6 +6,7 @@ PLUGIN_COMMON_COMPILER_FLAGS = \ $(GUDEV_CFLAGS) \ -I$(top_srcdir) \ -I$(top_srcdir)/src \ + -I$(top_builddir)/src \ -I$(top_srcdir)/include \ -I$(top_builddir)/include \ -I$(top_srcdir)/libmm-glib \