summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-11-25 13:10:20 -0500
committermidipix <writeonce@midipix.org>2018-11-25 13:17:30 -0500
commit019786b56996c2ea6b009f1e5dc9103bc041924a (patch)
tree510dde4a9983927a796a77337eee6a999d349889
parentf8208250a2cf8fa643a96b63a8a8604ff79628cc (diff)
downloadperk-019786b56996c2ea6b009f1e5dc9103bc041924a.tar.bz2
perk-019786b56996c2ea6b009f1e5dc9103bc041924a.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.in2
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)