summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2014-08-11 12:16:43 +0200
committerSebastian Dröge <sebastian@centricular.com>2014-08-27 12:44:39 +0300
commit15924ea42dae5ff0dae21bef7d7def5914e21ada (patch)
tree67399a4ae365590cf11f3bd93a7ade4f820cc1ba
parentaa212b2e30df85735a4b9b5ae674f937050871c8 (diff)
gst-plugins-good-static: fix spacings for configure options
-rw-r--r--recipes/gst-plugins-good-1.0-static.recipe10
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'