summaryrefslogtreecommitdiff
path: root/package/uboot-envtools
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-11-01 09:23:27 +0000
committerGabor Juhos <juhosg@openwrt.org>2011-11-01 09:23:27 +0000
commitc5ff1e8e96547e34425573fad82d5226f6e3c3a7 (patch)
tree795acce9bf27450fd451df73c789e3715e15af8a /package/uboot-envtools
parent06d9653b36cadb4be750ec9719a245b0dae5bccf (diff)
downloadmtk-20170518-c5ff1e8e96547e34425573fad82d5226f6e3c3a7.zip
mtk-20170518-c5ff1e8e96547e34425573fad82d5226f6e3c3a7.tar.gz
mtk-20170518-c5ff1e8e96547e34425573fad82d5226f6e3c3a7.tar.bz2
package/uboot-envtools: remove runtime dependency of zlib
zlib is a build-dependency, but in runtime zlib is not required, see: root@OpenWrt:/# ldd /usr/sbin/fw_printenv libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x2abb2000) libc.so.0 => /lib/libc.so.0 (0x2abd4000) ld-uClibc.so.0 => /lib/ld-uClibc.so.0 (0x2ab9a000) Signed-off-by: Daniel Golle <dgolle@allnet.de> SVN-Revision: 28696
Diffstat (limited to 'package/uboot-envtools')
-rw-r--r--package/uboot-envtools/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/uboot-envtools/Makefile b/package/uboot-envtools/Makefile
index eaa6921..600697f 100644
--- a/package/uboot-envtools/Makefile
+++ b/package/uboot-envtools/Makefile
@@ -10,11 +10,12 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=uboot-envtools
PKG_DISTNAME:=u-boot
PKG_VERSION:=2011.06
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_DISTNAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
PKG_MD5SUM:=
+PKG_BUILD_DEPENDS:=zlib
include $(INCLUDE_DIR)/package.mk
@@ -24,7 +25,6 @@ define Package/uboot-envtools
SECTION:=utils
CATEGORY:=Utilities
TITLE:=read/modify U-Boot bootloader environment
- DEPENDS:= +zlib
URL:=http://www.denx.de/wiki/U-Boot
endef