diff options
author | John Crispin <blogic@openwrt.org> | 2014-07-17 17:50:58 +0100 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-07-17 17:50:58 +0100 |
commit | 34f9d6f45b3c81670586fb9313ff8f3929e71f86 (patch) | |
tree | 3436f0bd285b1268ccb41d6277f654c8a02d40b7 /net | |
parent | 4fb546380f97215be69371bddaaf266daa4884d5 (diff) |
rtorrent: missing LDFLAG
libtorrent requires zlib to be linked
Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/rtorrent/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rtorrent/Makefile b/net/rtorrent/Makefile index 933b869b9..629e189df 100644 --- a/net/rtorrent/Makefile +++ b/net/rtorrent/Makefile @@ -64,7 +64,7 @@ $(call Package/rtorrent/Default/description) This package is built with xmlrpc support endef -TARGET_LDFLAGS += -lpthread -Wl,-rpath-link=$(STAGING_DIR)/usr/lib +TARGET_LDFLAGS += -lz -lpthread -Wl,-rpath-link=$(STAGING_DIR)/usr/lib CONFIGURE_ARGS+= \ --enable-shared \ |