diff options
author | Luka Perkov <luka@openwrt.org> | 2014-05-19 16:41:24 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2014-05-19 16:41:24 +0000 |
commit | 740ed0ede4a75894dfef5cca6047ccd7e0d12ac3 (patch) | |
tree | 95084e7cf38186b54cde96a437b1fabde888ba35 /package/boot/uboot-envtools/Makefile | |
parent | 443b2dfe3c536aeed22994a78da756ac91b00aa4 (diff) | |
download | upstream-740ed0ede4a75894dfef5cca6047ccd7e0d12ac3.tar.gz upstream-740ed0ede4a75894dfef5cca6047ccd7e0d12ac3.tar.bz2 upstream-740ed0ede4a75894dfef5cca6047ccd7e0d12ac3.zip |
uboot-envtools: update to 2014.04
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 40778
Diffstat (limited to 'package/boot/uboot-envtools/Makefile')
-rw-r--r-- | package/boot/uboot-envtools/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/package/boot/uboot-envtools/Makefile b/package/boot/uboot-envtools/Makefile index 631032c247..0f7c82560f 100644 --- a/package/boot/uboot-envtools/Makefile +++ b/package/boot/uboot-envtools/Makefile @@ -9,15 +9,15 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uboot-envtools PKG_DISTNAME:=u-boot -PKG_VERSION:=2013.10 -PKG_RELEASE:=3 +PKG_VERSION:=2014.04 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_DISTNAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:= \ http://mirror2.openwrt.org/sources \ ftp://ftp.denx.de/pub/u-boot -PKG_MD5SUM:=a076a044b64371edc52f7e562b13f6b2 +PKG_MD5SUM:=6d2116d1385a66e9a59742caa9d62a54 PKG_BUILD_DIR:=$(BUILD_DIR)/u-boot-$(PKG_VERSION) @@ -35,14 +35,14 @@ define Package/uboot-envtools/description endef define Build/Configure + touch $(PKG_BUILD_DIR)/include/config.mk + touch $(PKG_BUILD_DIR)/include/config.h endef define Build/Compile - touch $(PKG_BUILD_DIR)/include/config.h $(MAKE) -C $(PKG_BUILD_DIR) \ - HOSTCC="$(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gcc" \ - HOSTOPTFLAGS="$(TARGET_CFLAGS)" \ - HOSTSTRIP="$(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)strip" \ + CROSS_COMPILE="$(TARGET_CROSS)" \ + TARGET_CFLAGS="$(TARGET_CFLAGS)" \ env endef |