diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-02-23 01:08:18 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-02-25 11:44:55 +0100 |
commit | fd954089f8d058d2510d0999c99d382470d6178e (patch) | |
tree | 16c1971dacf9cfa663470cb189e97d3633a1b273 /recipes/gtk.recipe | |
parent | d2c205b2056f26112e3ca640d16c6a9166b25b71 (diff) |
Only build gtk docs for the linux target platform
Diffstat (limited to 'recipes/gtk.recipe')
-rw-r--r-- | recipes/gtk.recipe | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes/gtk.recipe b/recipes/gtk.recipe index a71c371e..216e8a99 100644 --- a/recipes/gtk.recipe +++ b/recipes/gtk.recipe @@ -69,6 +69,8 @@ class Recipe(recipe.Recipe): return flags def prepare(self): + if self.config.target_platform != Platform.LINUX: + self.configure_options += ' --disable-gtk-doc' if self.config.target_platform == Platform.WINDOWS: self.configure_options += '--disable-papi --disable-cups ' elif self.config.target_platform == Platform.DARWIN: |