diff options
author | midipix <writeonce@midipix.org> | 2018-07-07 21:13:53 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 05:58:44 -0400 |
commit | c13b2cbaf1766aa819ae9f0e5d71ce8d7151baf7 (patch) | |
tree | 42d88ef541de83f6a89b373f982c8f1774995007 | |
parent | 14cbcd60280c8ce1b6e12a8fca106f9fa4e6f0c4 (diff) | |
download | ptycon-c13b2cbaf1766aa819ae9f0e5d71ce8d7151baf7.tar.bz2 ptycon-c13b2cbaf1766aa819ae9f0e5d71ce8d7151baf7.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) |