diff options
author | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2017-03-08 00:28:39 +0100 |
---|---|---|
committer | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2017-03-20 12:32:43 +0000 |
commit | 9b22686134d804500f48a2c882bb6c04fa1cc1a6 (patch) | |
tree | 0b48b0166de12a4bf89d28905791a3de29557f58 | |
parent | 14477997c1539878b877396ef5b4251001f4e70f (diff) |
build: coding/gsm0503: fix build in sep. dir: -I builddir
To allow building coding/gsm0503_interleaving.c which includes the generated
bit*gen.h (via bits.h), add -I to the builddir include path in order to find
the generated bit*gen.h headers there.
Change-Id: I0d465bc109765b1315d615243bea6af027afa368
-rw-r--r-- | src/coding/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/coding/Makefile.am b/src/coding/Makefile.am index e19b1877..cbdcf471 100644 --- a/src/coding/Makefile.am +++ b/src/coding/Makefile.am @@ -5,6 +5,7 @@ LIBVERSION = 0:0:0 AM_CPPFLAGS = \ -I"$(top_srcdir)/include" \ + -I"$(top_builddir)/include" \ $(TALLOC_CFLAGS) AM_CFLAGS = -Wall |