diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-10-04 12:09:53 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-10-04 12:25:35 +0200 |
commit | 7cd047b75da45c3cfbae930da947e392adada24b (patch) | |
tree | 9725251c19f0a3a84dafa847a186145a1b2a472d | |
parent | ebf7f790a657a5bcb4043aea1a3e25f3faa07a0e (diff) |
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.
-rw-r--r-- | plugins/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
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 \ |