diff options
author | midipix <writeonce@midipix.org> | 2018-11-25 13:10:20 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-25 13:17:31 -0500 |
commit | 3d0f9d6d0701e949b4920b8f16e2ac56a7c4c605 (patch) | |
tree | fda2c89ae19b9524c9a170b013d3c853cef195b5 | |
parent | 65385263c1e28d0a0f23bb309640f15127f311f6 (diff) | |
download | u16ports-3d0f9d6d0701e949b4920b8f16e2ac56a7c4c605.tar.bz2 u16ports-3d0f9d6d0701e949b4920b8f16e2ac56a7c4c605.tar.xz |
build system: --all-shared: ensure linking against the newly built library.
This patch guards against the case where -lfoo would result in the linking
in of either an external import library libfoo.lib.a, or a static libfoo.a,
be it internal or external to the build system.
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 76d0133..208a2ed 100644 --- a/Makefile.in +++ b/Makefile.in @@ -228,7 +228,7 @@ $(DEFAULT_APP): $(STATIC_OBJS) $(APP_OBJS) rm -f app.tag $(CC) -o $@ $^ $(LDFLAGS_APP) -$(SHARED_APP): $(DSO_REF_SONAME) $(APP_OBJS) $(SHARED_SOLINK) +$(SHARED_APP): $(DSO_REF_SOLINK) $(APP_OBJS) $(SHARED_SOLINK) rm -f app.tag $(CC) -o $@ $(APP_OBJS) $(LDFLAGS_APP) -l$(PACKAGE) |