diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-12-23 14:36:38 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-12-23 14:36:38 +0100 |
commit | ecc6da3b1ac245f017a7dd5b85cc778af09297dd (patch) | |
tree | 931ccf5fcf87551e362f61028aace2961566e3c3 | |
parent | 6fadda7adc7291eb355382d0f05677a92f9c3d57 (diff) | |
download | buildroot-ecc6da3b1ac245f017a7dd5b85cc778af09297dd.tar.gz buildroot-ecc6da3b1ac245f017a7dd5b85cc778af09297dd.zip |
xfsprogs: disable on musl
Despite a recent bump, xfsprogs still doesn't build on musl. It's been
failing for a long long time, so let's disable it in this configuration.
Fixes:
http://autobuild.buildroot.net/results/c6cd42da1abe2936872da1f9db093ffc72be3c15/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/xfsprogs/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/xfsprogs/Config.in b/package/xfsprogs/Config.in index 6e1a935bbc..a82663f575 100644 --- a/package/xfsprogs/Config.in +++ b/package/xfsprogs/Config.in @@ -1,11 +1,12 @@ -comment "xfsprogs needs a toolchain w/ wchar" +comment "xfsprogs needs a glibc or uClibc toolchain w/ wchar" depends on BR2_USE_MMU - depends on !BR2_USE_WCHAR + depends on !BR2_USE_WCHAR || BR2_TOOLCHAIN_USES_MUSL config BR2_PACKAGE_XFSPROGS bool "xfsprogs" depends on BR2_USE_MMU # fork() depends on BR2_USE_WCHAR # util-linux + depends on !BR2_TOOLCHAIN_USES_MUSL select BR2_PACKAGE_UTIL_LINUX select BR2_PACKAGE_UTIL_LINUX_LIBUUID select BR2_PACKAGE_UTIL_LINUX_LIBBLKID |