diff options
author | gilles.talis@gmail.com <gilles.talis@gmail.com> | 2013-02-09 08:20:00 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-02-09 19:47:35 +0100 |
commit | 7ee0c793653ebd03acf90eea2913328a0bd8d0ee (patch) | |
tree | 6446fee2f2b8c1ac2a5bad467793688b7f583b6d | |
parent | 1ccf523713dda8bccbc8bb3dcea591d54d8d9278 (diff) | |
download | buildroot-novena-7ee0c793653ebd03acf90eea2913328a0bd8d0ee.tar.gz buildroot-novena-7ee0c793653ebd03acf90eea2913328a0bd8d0ee.zip |
mplayer: not supported on sh2/sh2a
mplayer configure script says that sh2a is not supported.
Fixes:
http://autobuild.buildroot.org/results/0e530fd99c4b37782208ee0549be500220643999/
Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/multimedia/mplayer/Config.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/multimedia/mplayer/Config.in b/package/multimedia/mplayer/Config.in index e28564457..e36fc4681 100644 --- a/package/multimedia/mplayer/Config.in +++ b/package/multimedia/mplayer/Config.in @@ -1,7 +1,8 @@ config BR2_PACKAGE_MPLAYER bool "mplayer" # Those architectures are not supported by MPlayer - depends on !BR2_sh4a && !BR2_sh4aeb && !BR2_microblaze && !BR2_aarch64 + depends on !(BR2_sh2 || BR2_sh2a || BR2_sh4a || BR2_sh4aeb \ + || BR2_microblaze || BR2_aarch64) depends on BR2_LARGEFILE help MPlayer is a movie player which runs on many systems and supports |