diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-05-05 23:17:06 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-05 23:52:57 +0200 |
commit | 7db35ffa811378b45e25eddeb7f084fe0387b4ea (patch) | |
tree | f3d09817ff0ca1191e9f9e4d5c6f64ead6696bfa | |
parent | a343e8b3593837f7e153fb96e6430ab1cbcfbe09 (diff) | |
download | buildroot-7db35ffa811378b45e25eddeb7f084fe0387b4ea.tar.gz buildroot-7db35ffa811378b45e25eddeb7f084fe0387b4ea.zip |
package: add support for musl in tuple
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
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 |