diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-12-27 07:51:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-12-27 07:51:34 +0100 |
commit | 92d7f6522617c947d635680d045f12a4ef77bcb4 (patch) | |
tree | c20dc2f36505542fdb19a2b9d1da1b33ad92fba8 /toolchain/glibc | |
parent | 6a7c5ff345b197c1d5f0f845adb2bb0da9690075 (diff) |
convert checksum check to sha256
Rename the variable name to PKG_HASH and use a
256 Bit SHA checksum to verify the integrity of
distfiles. While there do some housekeeping and
remove old packages.
Diffstat (limited to 'toolchain/glibc')
-rw-r--r-- | toolchain/glibc/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/glibc/Makefile.inc b/toolchain/glibc/Makefile.inc index 68607e954..2a8222729 100644 --- a/toolchain/glibc/Makefile.inc +++ b/toolchain/glibc/Makefile.inc @@ -10,13 +10,13 @@ ifeq ($(ADK_TARGET_LIB_GLIBC_2_20),y) PKG_VERSION:= 2.20 PKG_SITES:= ${MASTER_SITE_GNU:=glibc/} PKG_RELEASE:= 1 -PKG_MD5SUM:= 948a6e06419a01bd51e97206861595b0 +PKG_HASH:= f84b6d42aecc288d593c397b0a3d02260a33ee686bce0c634eb9b32798f36ba5 endif ifeq ($(ADK_TARGET_LIB_GLIBC_2_19),y) PKG_VERSION:= 2.19 PKG_SITES:= ${MASTER_SITE_GNU:=glibc/} PKG_RELEASE:= 1 -PKG_MD5SUM:= e26b8cc666b162f999404b03970f14e4 +PKG_HASH:= 2d3997f588401ea095a0b27227b1d50cdfdd416236f6567b564549d3b46ea2a2 endif DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz GLIBC_CONFOPTS:= --build=$(GNU_HOST_NAME) \ |