diff options
Diffstat (limited to 'recipes/gst-plugins-good-1.0-static.recipe')
-rw-r--r-- | recipes/gst-plugins-good-1.0-static.recipe | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/recipes/gst-plugins-good-1.0-static.recipe b/recipes/gst-plugins-good-1.0-static.recipe index eae11c0a..1c1cb2d0 100644 --- a/recipes/gst-plugins-good-1.0-static.recipe +++ b/recipes/gst-plugins-good-1.0-static.recipe @@ -106,23 +106,23 @@ class Recipe(custom.GStreamerStatic): self.append_env['CXXFLAGS'] = " -Wno-error " self.append_env['CPPFLAGS'] = " -Wno-error " if self.config.target_platform != Platform.LINUX: - self.configure_options += '--disable-gtk-doc ' + self.configure_options += ' --disable-gtk-doc' if self.config.target_platform == Platform.WINDOWS: - self.configure_options += '--disable-aalib --disable-esd ' + self.configure_options += ' --disable-aalib --disable-esd' if self.config.target_platform == Platform.LINUX: self.use_system_libs = True if self.config.variants.v4l2: self.files_plugins_capture_devel += ['libgstvideo4linux2'] else: - self.configure_options += ' --disable-gst_v4l2 ' + self.configure_options += ' --disable-gst_v4l2' if self.config.variants.x11: self.files_plugins_capture_devel += ['libgstximagesrc'] else: - self.configure_options += '--disable-x' + self.configure_options += ' --disable-x' if self.config.variants.pulse: self.files_plugins_sys_devel += ['libgstpulse'] else: - self.configure_options += '--disable-pulse' + self.configure_options += ' --disable-pulse' if self.config.variants.nodebug: self.configure_options += ' --disable-gst-debug' |