mirror of https://gerrit.osmocom.org/gapk
src/Makefile.am: fix building with --enable-gsmhr
In change [1] I moved libraries from _LDFLAGS to _LIBADD, but I did
not notice that there was another problem: when building with gsmhr,
the content of _LIBADD gets overwritten in a conditional block.
Do not overwrite but append libgsmhr.la to _LIBADD.
Change-Id: Ib46b1f6555b13e0937a8d6fe6e2ad70ed9d06d58
Fixes: [1] 08c1edb986
changes/38/31938/1
parent
99a6ba79c8
commit
166a189c4f
|
@ -35,7 +35,7 @@ libosmogapk_la_LDFLAGS = \
|
|||
$(NULL)
|
||||
|
||||
if ENABLE_GSMHR
|
||||
libosmogapk_la_LIBADD = $(top_builddir)/libgsmhr/libgsmhr.la
|
||||
libosmogapk_la_LIBADD += $(top_builddir)/libgsmhr/libgsmhr.la
|
||||
endif
|
||||
|
||||
# Processing queue implementation
|
||||
|
|
Loading…
Reference in New Issue