diff options
author | midipix <writeonce@midipix.org> | 2018-07-07 21:13:53 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 05:58:38 -0400 |
commit | fb676f9baab6b5f9e5c818eac7c0f030438e7afc (patch) | |
tree | c35bdf26d3795fe3a92ce8a72a65acfff34c3327 | |
parent | 6ee51d8a703ae8e27cf79d26cf5d239ccf0c1501 (diff) | |
download | mdso-fb676f9baab6b5f9e5c818eac7c0f030438e7afc.tar.bz2 mdso-fb676f9baab6b5f9e5c818eac7c0f030438e7afc.tar.xz |
build system: all-shared binary: added missing build-dep on $(SHARED_SOLINK).
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index f653626..917d875 100644 --- a/Makefile.in +++ b/Makefile.in @@ -226,7 +226,7 @@ $(DEFAULT_APP): $(STATIC_OBJS) $(APP_OBJS) rm -f app.tag $(CC) -o $@ $^ $(LDFLAGS_APP) -$(SHARED_APP): $(SHARED_LIB) $(APP_OBJS) +$(SHARED_APP): $(SHARED_LIB) $(APP_OBJS) $(SHARED_SOLINK) rm -f app.tag $(CC) -o $@ $(APP_OBJS) $(LDFLAGS_SHARED) -l$(PACKAGE) |