diff options
author | midipix <writeonce@midipix.org> | 2018-11-25 06:01:56 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-25 09:22:52 -0500 |
commit | 0198a5b6f360d981ea332fb599ee0c3fecb816c5 (patch) | |
tree | c4364d6428fdfc6f168148c8aaa828b12de98254 | |
parent | 333a37fe037f5ddcc16625199ff4b20b8aef7d6c (diff) | |
download | ntux-0198a5b6f360d981ea332fb599ee0c3fecb816c5.tar.bz2 ntux-0198a5b6f360d981ea332fb599ee0c3fecb816c5.tar.xz |
build system: --all-shared: properly express primary shared library dependency.
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 887f367..ad393f7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -227,7 +227,7 @@ $(DEFAULT_APP): $(STATIC_OBJS) $(APP_OBJS) rm -f app.tag $(CC) -o $@ $^ $(LDFLAGS_APP) -$(SHARED_APP): $(SHARED_LIB) $(APP_OBJS) $(SHARED_SOLINK) +$(SHARED_APP): $(DSO_REF_SONAME) $(APP_OBJS) $(SHARED_SOLINK) rm -f app.tag $(CC) -o $@ $(APP_OBJS) $(LDFLAGS_APP) -l$(PACKAGE) |