From: Josef Schlehofer Date: Sun, 14 Feb 2021 09:06:43 +0000 (+0100) Subject: geth: add libiconv-full dependency if build with NLS X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=a639df8ae41aadc87a4c60a8451e16e78cc22759;p=openwrt-packages.git geth: add libiconv-full dependency if build with NLS Variable ICONV_DEPENDS is specified in nls.mk which can be found in OpenWrt main repository. This fixes issue: /foo/build/staging_dir/toolchain-arm_cortex-a9+vfpv3-d16_gcc-8.4.0_musl_eabi/lib/gcc/arm-openwrt-linux-muslgnueabi/8.4.0/../../../../arm-openwrt-linux-muslgnueabi/bin/ld: cannot find -liconv Signed-off-by: Josef Schlehofer --- diff --git a/net/geth/Makefile b/net/geth/Makefile index 1b879aea1..50775303a 100644 --- a/net/geth/Makefile +++ b/net/geth/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=go-ethereum PKG_VERSION:=1.9.22 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/ethereum/go-ethereum/tar.gz/v${PKG_VERSION}? @@ -35,7 +35,7 @@ define Package/geth CATEGORY:=Network TITLE:=Ethereum Go client URL:=https://geth.ethereum.org/ - DEPENDS:=$(GO_ARCH_DEPENDS) + DEPENDS:=$(GO_ARCH_DEPENDS) $(ICONV_DEPENDS) endef define Package/geth/description