summaryrefslogtreecommitdiff
path: root/toolchain/glibc
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-08-04 08:27:03 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-08-04 08:37:22 +0200
commitccb0b79b6f0210dc550dfbf7dadad38d1388501c (patch)
tree340c43fd2b6df9f6974fa2242400b00385b9c41d /toolchain/glibc
parent18e99a1f0fee9eb55888be3df630adacd04e9af0 (diff)
add musl git support
Diffstat (limited to 'toolchain/glibc')
-rw-r--r--toolchain/glibc/Makefile.inc9
1 files changed, 7 insertions, 2 deletions
diff --git a/toolchain/glibc/Makefile.inc b/toolchain/glibc/Makefile.inc
index f5f397d35..287254733 100644
--- a/toolchain/glibc/Makefile.inc
+++ b/toolchain/glibc/Makefile.inc
@@ -2,10 +2,15 @@
# material, please see the LICENCE file in the top-level directory.
PKG_NAME:= glibc
-PKG_VERSION:= 2.19
+ifeq ($(ADK_LIBC_VERSION),git)
+PKG_VERSION:= git
+PKG_REPO:= git://sourceware.org/git/glibc.git
+else
+PKG_VERSION:= $(ADK_LIBC_VERSION)
+PKG_SITES:= ${MASTER_SITE_GNU:=glibc/}
+endif
PKG_RELEASE:= 1
PKG_MD5SUM:= e26b8cc666b162f999404b03970f14e4
-PKG_SITES:= ${MASTER_SITE_GNU:=glibc/}
GLIBC_CONFOPTS:= --build=$(GNU_HOST_NAME) \
--host=$(GNU_TARGET_NAME) \
--with-headers=$(STAGING_TARGET_DIR)/usr/include \