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/gst-ffmpeg.recipe | |
parent | d2c205b2056f26112e3ca640d16c6a9166b25b71 (diff) |
Only build gtk docs for the linux target platform
Diffstat (limited to 'recipes/gst-ffmpeg.recipe')
-rw-r--r-- | recipes/gst-ffmpeg.recipe | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes/gst-ffmpeg.recipe b/recipes/gst-ffmpeg.recipe index 0ccfdb2..b91dd99 100644 --- a/recipes/gst-ffmpeg.recipe +++ b/recipes/gst-ffmpeg.recipe @@ -15,6 +15,8 @@ class Recipe(recipe.Recipe): files_plugins_codecs_restricted = ['lib/gstreamer-0.10/libgstffmpeg%(mext)s'] def prepare(self): + if self.config.target_platform != Platform.LINUX: + self.configure_options += ' --disable-gtk-doc' if self.config.target_platform == Platform.DARWIN: if self.config.target_arch == Architecture.X86_64: asflags = ' -arch x86_64 -m64' |