diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-04 08:27:03 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-04 08:37:22 +0200 |
commit | ccb0b79b6f0210dc550dfbf7dadad38d1388501c (patch) | |
tree | 340c43fd2b6df9f6974fa2242400b00385b9c41d /toolchain/musl | |
parent | 18e99a1f0fee9eb55888be3df630adacd04e9af0 (diff) |
add musl git support
Diffstat (limited to 'toolchain/musl')
-rw-r--r-- | toolchain/musl/Makefile.inc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/toolchain/musl/Makefile.inc b/toolchain/musl/Makefile.inc index 067a371d4..9b0fb88b8 100644 --- a/toolchain/musl/Makefile.inc +++ b/toolchain/musl/Makefile.inc @@ -2,8 +2,13 @@ # material, please see the LICENCE file in the top-level directory. PKG_NAME:= musl -PKG_VERSION:= 1.1.4 +ifeq ($(ADK_LIBC_VERSION),git) +PKG_VERSION:= git +PKG_REPO:= git://git.musl-libc.org/musl +else +PKG_VERSION:= $(ADK_LIBC_VERSION) +PKG_SITES:= http://www.musl-libc.org/releases/ +endif PKG_RELEASE:= 1 PKG_MD5SUM:= f18f3bdbe088438cd64a5313c19a7312 -PKG_SITES:= http://www.musl-libc.org/releases/ DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz |