diff options
author | Vadim Yanitskiy <axilirator@gmail.com> | 2017-08-31 17:53:04 +0700 |
---|---|---|
committer | Vadim Yanitskiy <axilirator@gmail.com> | 2017-08-31 17:53:04 +0700 |
commit | 272bd4fa6611bfb4f7a9fc9a46184709f984f3c1 (patch) | |
tree | bd6aa0f47d9465b70aaa83048d290f8b5db5aa69 /src/coding | |
parent | 483cdffeb8beab7d43c39e9d46a20bad03ff56ad (diff) |
Makefile.am: fix missing LTLDFLAGS for libosmocoding
Despite the libosmocoding.map is preset since the library release,
one was not used in a proper way. The LTLDFLAGS were missing, so
let's add them.
Change-Id: Idf677825ff642d50bea43c7f970810783e864fdd
Diffstat (limited to 'src/coding')
-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 06e55e56..dcbbd8ff 100644 --- a/src/coding/Makefile.am +++ b/src/coding/Makefile.am @@ -22,6 +22,7 @@ libosmocoding_la_SOURCES = \ gsm0503_parity.c \ gsm0503_coding.c libosmocoding_la_LDFLAGS = \ + $(LTLDFLAGS_OSMOCODING) \ -version-info \ $(LIBVERSION) \ -no-undefined \ |