fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmocom-bb/+/29177 )
Change subject: layer23: use $(top_builddir) instead of relative paths ......................................................................
layer23: use $(top_builddir) instead of relative paths
Change-Id: Ib2c9264b2a3cdef9b9852bdead94bae03185fec8 --- M src/host/layer23/src/misc/Makefile.am M src/host/layer23/src/mobile/Makefile.am 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/77/29177/1
diff --git a/src/host/layer23/src/misc/Makefile.am b/src/host/layer23/src/misc/Makefile.am index 4daaf91..ad48bda 100644 --- a/src/host/layer23/src/misc/Makefile.am +++ b/src/host/layer23/src/misc/Makefile.am @@ -11,7 +11,7 @@ $(NULL)
LDADD = \ - ../common/liblayer23.a \ + $(top_builddir)/src/common/liblayer23.a \ $(LIBOSMOCORE_LIBS) \ $(LIBOSMOGSM_LIBS) \ $(LIBOSMOCODEC_LIBS) \ diff --git a/src/host/layer23/src/mobile/Makefile.am b/src/host/layer23/src/mobile/Makefile.am index 00f10a9..8fefdfa 100644 --- a/src/host/layer23/src/mobile/Makefile.am +++ b/src/host/layer23/src/mobile/Makefile.am @@ -36,7 +36,7 @@ mobile_SOURCES = main.c app_mobile.c mobile_LDADD = \ libmobile.a \ - ../common/liblayer23.a \ + $(top_builddir)/src/common/liblayer23.a \ $(LIBOSMOCORE_LIBS) \ $(LIBOSMOVTY_LIBS) \ $(LIBOSMOGSM_LIBS) \