From fa4bf7924b43dfef0091219f7c98a627e82bfe4c Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 25 Aug 2015 22:57:20 +0000 Subject: [PATCH] allow building with a particular tag/branch/commit of musl --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0d34fa1..6a469d0 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ TARGET = sh2eb-linux-musl BINUTILS_VER = 2.25.1 GCC_VER = 5.2.0 +MUSL_TAG = master COMMON_CONFIG = --disable-werror \ --target=$(TARGET) --prefix=$(OUTPUT) \ @@ -111,7 +112,7 @@ steps/install_gcc: steps/build_gcc steps/clone_musl: - test -d musl || git clone git://git.musl-libc.org/musl musl + test -d musl || git clone -b $(MUSL_TAG) git://git.musl-libc.org/musl musl touch $@ steps/configure_musl: steps/clone_musl steps/install_gcc0