diff options
author | Edward Hervey <bilboed@bilboed.com> | 2015-01-28 14:01:25 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2015-01-28 14:01:25 +0100 |
commit | 136e85c052119817c7a70ade180e49033c98665e (patch) | |
tree | e548b7eb3a7de9618dc072b6cec825dc835773f3 /recipes/libtheora.recipe | |
parent | bd2f46dc5e15281548c64169105051db63cbe08a (diff) |
recipes/libtheora: Disable examples build on android
We don't really need them, and they fail with Android L (due to missing
timeb.h header)
Diffstat (limited to 'recipes/libtheora.recipe')
-rw-r--r-- | recipes/libtheora.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libtheora.recipe b/recipes/libtheora.recipe index b3bb0778..9230c791 100644 --- a/recipes/libtheora.recipe +++ b/recipes/libtheora.recipe @@ -26,7 +26,7 @@ class Recipe(recipe.Recipe): if self.config.target_platform == Platform.WINDOWS: self.configure_options = ' --disable-spec --disable-doc' elif self.config.target_platform == Platform.ANDROID: - self.configure_options = ' --disable-spec --disable-doc' + self.configure_options = ' --disable-spec --disable-doc --disable-examples' self.config_sh = 'sh autogen.sh' elif self.config.target_platform == Platform.IOS: self.configure_options = ' --disable-spec --disable-doc' |