diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-07 12:52:50 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-20 17:19:10 +0100 |
commit | de2c9bc25048fc00a7a8ceb56702b87abd27097a (patch) | |
tree | 55c65e5bc6a0ffc35dae9c57434a76c2028cbb1a /recipes/libtheora.recipe | |
parent | b669e2018b79a3fd9e324cac9064423430074ec4 (diff) |
libtheora: disable docs build in windows
Diffstat (limited to 'recipes/libtheora.recipe')
-rw-r--r-- | recipes/libtheora.recipe | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes/libtheora.recipe b/recipes/libtheora.recipe index cb57c015..bf5ac986 100644 --- a/recipes/libtheora.recipe +++ b/recipes/libtheora.recipe @@ -5,3 +5,7 @@ class Recipe(recipe.Recipe): name = 'libtheora' version = '1.1.1' deps = ['libogg', 'libvorbis'] + + def prepare(self): + if self.config.target_platform == Platform.WINDOWS: + self.configure_options = ' --disable-doc' |