package: add support for musl in tuple
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 5 May 2014 21:17:06 +0000 (23:17 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Mon, 5 May 2014 21:52:57 +0000 (23:52 +0200)
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/Makefile.in

index c34a3bf43d028ba1fde5d4ec3a88e0595b269221..2fc3aa7e0fe93110538d27024f6080fd144c6d2c 100644 (file)
@@ -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