diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-06-08 10:40:07 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-06-08 10:40:07 +0200 |
commit | 97c636279c04e0d01c64b2ba0a1f76b8a1cc5d48 (patch) | |
tree | 88ca25f26af312ff8a39f8e61abcfd0ac304cf67 | |
parent | d22b78be7b2b95ba028c6584e9ee5abb69a375cb (diff) |
fix checksum and some typos
-rw-r--r-- | mk/build.mk | 8 | ||||
-rw-r--r-- | toolchain/binutils/Makefile.inc | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/mk/build.mk b/mk/build.mk index 359569826..0d807076a 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -284,9 +284,9 @@ endif |sed -e "s#^config \(.*\)#\1=y#" \ >> $(TOPDIR)/.defconfig; \ fi - for symbol in ${DEFCONFIG}; do \ + @for symbol in ${DEFCONFIG}; do \ echo $$symbol >> $(TOPDIR)/.defconfig; \ - done; \ + done @if [ ! -z "$(FS)" ];then \ grep "^config" target/Config.in \ |grep -i "$(FS)" \ @@ -355,9 +355,9 @@ endif |sed -e "s#^config \(.*\)#\1=y#" \ >> $(TOPDIR)/all.config; \ fi - for symbol in ${DEFCONFIG}; do \ + @for symbol in ${DEFCONFIG}; do \ echo $$symbol >> $(TOPDIR)/all.config; \ - done; \ + done @if [ ! -z "$(FS)" ];then \ grep "^config" target/Config.in \ |grep -i "$(FS)" \ diff --git a/toolchain/binutils/Makefile.inc b/toolchain/binutils/Makefile.inc index 7a91b2a69..0325a2293 100644 --- a/toolchain/binutils/Makefile.inc +++ b/toolchain/binutils/Makefile.inc @@ -4,7 +4,7 @@ PKG_NAME:= binutils PKG_VERSION:= 2.20.51 PKG_RELEASE:= 1 -PKG_MD5SUM:= 70971093cfa11bd943e06eccb2fd8914 +PKG_MD5SUM:= 74a7716095e031c8462137ca26ff5472 PKG_SITES:= ftp://sourceware.org/pub/binutils/snapshots/ #PKG_SITES:= ${MASTER_SITE_GNU:=binutils/} DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2 |