aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-02-02 15:49:16 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2018-02-02 15:52:50 +0700
commita70b22376c49e8dcc122361c6618d2665062c377 (patch)
treeaeb70b4bc183e1c72c88481fca6cb3013f47a98f /src
parent7a79fc11692779a1f9377b416b6208f1245e7612 (diff)
src/Makefile.am: fix osmo-gapk LDADD dependency
This change fixes parallel building problem, when osmo-gapk was being compiled before its libosmogapk dependency: make[2]: *** No rule to make target '../src/libosmogapk.la', needed by 'osmo-gapk'. Stop. make[2]: *** Waiting for unfinished jobs.... For some reason, automake ignores a dependency if the full path is provided: $(top_builddir)/src/libosmogapk.la while the relative path solves the problem: libosmogapk.la Closes: OS#2907 Change-Id: I3fdd1731bd372bbb42fe57981e757386e8ede0f0
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 8efd165..50ffda4 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -93,5 +93,5 @@ osmo_gapk_LDFLAGS = \
$(NULL)
osmo_gapk_LDADD = \
- $(top_builddir)/src/libosmogapk.la \
+ libosmogapk.la \
$(NULL)