diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-07 15:12:24 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-07 15:16:54 +0100 |
commit | 82927a24f9ff89558fd77cdff31ce0d7e880dbf0 (patch) | |
tree | 18a8b48789232d470dfcb85f8fc8665eca392fc9 /libs/libtorrent | |
parent | 3b1bb08f974694ba72ebe2c93b9d445a48e33d01 (diff) |
libtorrent: remove manual autoconf invocation
The Makefile already uses the proper autoreconf fixup but leaves a manual
autoconf invocation in place.
The bad autoconf call leads to the following build error in the SDK:
configure.ac:3: installing `./config.guess'
configure.ac:3: installing `./config.sub'
configure.ac:20: installing `./install-sh'
configure.ac:20: installing `./missing'
src/Makefile.am: installing `./depcomp'
autoreconf: Leaving directory `.'
aclocal...
autoheader...
libtoolize... libtoolize nor glibtoolize not found
make[2]: *** [.../.configured_] Error 1
Remove the entire Build/Configure override to let libtorrent build correctly.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'libs/libtorrent')
-rw-r--r-- | libs/libtorrent/Makefile | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/libtorrent/Makefile b/libs/libtorrent/Makefile index 1d6fd10d3..f6673acaa 100644 --- a/libs/libtorrent/Makefile +++ b/libs/libtorrent/Makefile @@ -51,11 +51,6 @@ CONFIGURE_ARGS+= \ --disable-instrumentation \ --with-zlib=$(STAGING_DIR)/usr -define Build/Configure - ( cd $(PKG_BUILD_DIR); ./autogen.sh ); - $(call Build/Configure/Default) -endef - define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/torrent $(1)/usr/include/ |