From: Thomas Petazzoni Date: Mon, 5 May 2014 21:17:06 +0000 (+0200) Subject: package: add support for musl in tuple X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7db35ffa811378b45e25eddeb7f084fe0387b4ea;p=buildroot.git package: add support for musl in tuple Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/package/Makefile.in b/package/Makefile.in index c34a3bf43d..2fc3aa7e0f 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -47,6 +47,8 @@ endif ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y) LIBC=uclibc +else ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y) +LIBC=musl else LIBC=gnu endif