summaryrefslogtreecommitdiff
path: root/modules/theora/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/theora/config.py')
-rw-r--r--modules/theora/config.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/theora/config.py b/modules/theora/config.py
index b063ed51f9..9a27e8e132 100644
--- a/modules/theora/config.py
+++ b/modules/theora/config.py
@@ -1,5 +1,8 @@
def can_build(env, platform):
- return env.module_check_dependencies("theora", ["ogg", "vorbis"])
+ if env["arch"].startswith("rv"):
+ return False
+ env.module_add_dependencies("theora", ["ogg", "vorbis"])
+ return True
def configure(env):