diff options
author | Angelo Compagnucci <angelo@amarulasolutions.com> | 2018-08-05 16:05:03 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-05 16:19:50 +0200 |
commit | 0f96073561badde3c7abdf338abca7d00dba56dd (patch) | |
tree | 1970d0c6d4092a39b3929ce40ba9ea60273ff437 | |
parent | 4094342e2a14e92544575435a576df4f6ddde7b9 (diff) | |
download | buildroot-0f96073561badde3c7abdf338abca7d00dba56dd.tar.gz buildroot-0f96073561badde3c7abdf338abca7d00dba56dd.zip |
package/mono: remove target mips architecture
Current version of mono doesn't compile on mips due to a bug, so
disabling the mips target architecture until the bug is fixed upstream.
Fixes: http://autobuild.buildroot.net/results/b402af8cb7f00dc2e69c219926b474a8e0c8d372
and many others.
Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/mono/Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/mono/Config.in b/package/mono/Config.in index 63208fef49..a375a98448 100644 --- a/package/mono/Config.in +++ b/package/mono/Config.in @@ -5,8 +5,8 @@ config BR2_PACKAGE_HOST_MONO_ARCH_SUPPORTS config BR2_PACKAGE_MONO_ARCH_SUPPORTS bool - default y if (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || \ - BR2_mipsel || BR2_powerpc || BR2_x86_64) + default y if (BR2_arm || BR2_armeb || BR2_i386 || \ + BR2_powerpc || BR2_x86_64) depends on BR2_PACKAGE_HOST_MONO_ARCH_SUPPORTS config BR2_PACKAGE_MONO |