diff options
author | midipix <writeonce@midipix.org> | 2018-11-23 03:54:46 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-23 03:56:06 -0500 |
commit | 2e2412e8ddaffceddcd4f8ba9bc94380aa2081a8 (patch) | |
tree | 393e7125f761a0f03fda24fb3ae13a9923963245 | |
parent | 9bb8c759c1f44ba69cc4f9b4e9ed41dbac794656 (diff) | |
download | ptycon-2e2412e8ddaffceddcd4f8ba9bc94380aa2081a8.tar.bz2 ptycon-2e2412e8ddaffceddcd4f8ba9bc94380aa2081a8.tar.xz |
build system: all-shared: use LDFLAGS_APP as before, now with correct ordering.
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 9ec7513..887f367 100644 --- a/Makefile.in +++ b/Makefile.in @@ -229,7 +229,7 @@ $(DEFAULT_APP): $(STATIC_OBJS) $(APP_OBJS) $(SHARED_APP): $(SHARED_LIB) $(APP_OBJS) $(SHARED_SOLINK) rm -f app.tag - $(CC) -o $@ $(APP_OBJS) $(LDFLAGS_SHARED) -l$(PACKAGE) + $(CC) -o $@ $(APP_OBJS) $(LDFLAGS_APP) -l$(PACKAGE) $(STATIC_APP): $(STATIC_OBJS) $(APP_OBJS) rm -f app.tag |