Hello,
I just stumbled over the following change in libosmocore
diff --git a/src/vty/Makefile.am b/src/vty/Makefile.am index 7353ab8..8d730c3 100644 --- a/src/vty/Makefile.am +++ b/src/vty/Makefile.am @@ -10,5 +10,5 @@ lib_LTLIBRARIES = libosmovty.la
libosmovty_la_SOURCES = buffer.c command.c vty.c vector.c utils.c \ telnet_interface.c logging_vty.c -libosmovty_la_LIBADD = $(top_builddir)/src/libosmocore.la +libosmovty_la_LIBADD = -losmocore $(top_builddir)/src/libosmocore.la endif
from commit 2822296d The -losmocore seems wrong as it is the library we're building here and it's not necessarily already installed. If I remove that part libosmocore builds for me again.
Regards, Daniel Willmann
Daniel,
the idea was to link libosmovty against libosmocore. But I'm fine with reverting this change.