diff options
author | midipix <writeonce@midipix.org> | 2018-11-25 06:01:56 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-25 09:18:58 -0500 |
commit | bfbcd246bbe18879bca39c811defdfae4f4d6883 (patch) | |
tree | 94a8ce7272ab125548d8e4637951633e4a825f35 | |
parent | d8a892bd560513b50f625f42b8e886ea84c1ccd2 (diff) | |
download | sofort-bfbcd246bbe18879bca39c811defdfae4f4d6883.tar.bz2 sofort-bfbcd246bbe18879bca39c811defdfae4f4d6883.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) |