diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-10-28 12:18:59 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-10-28 15:15:18 +0100 |
commit | 221a8e7b86256299ea4d8d51ceb2c9d14d0d8935 (patch) | |
tree | 5b6ba90effb0389527dea45afb24f58e2d83d814 | |
parent | c00633cd751a2ccc6fcf8d1805a358327ae6d628 (diff) |
gstreamer.inc: Use base_conditional for Openmoko instead of a plain override
The plain override undid the changes gst-plugins-{bad,ugly,good} did
which means that the dependency on gst-plugins-base got dropped.
Use base_conditional to add the libmad dependency when we are
building for Openmoko.
This continues f4fcadb061442a394cbe50041eb6acd9d4125eba.
-rw-r--r-- | packages/gstreamer/gst-plugins.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/gstreamer/gst-plugins.inc b/packages/gstreamer/gst-plugins.inc index 2964b7db8f..f8447ee25d 100644 --- a/packages/gstreamer/gst-plugins.inc +++ b/packages/gstreamer/gst-plugins.inc @@ -1,7 +1,7 @@ require gst-common.inc DESCRIPTION = "Plugins for GStreamer" -DEPENDS = "gstreamer libmikmod libmad liboil libogg tremor libvorbis libid3tag" -DEPENDS_openmoko = "gstreamer libmikmod liboil libogg tremor libvorbis libid3tag" +DEPENDS = "gstreamer libmikmod liboil libogg tremor libvorbis libid3tag" +DEPENDS += "${@base_conditional('DISTRO', 'openmoko', '', 'libmad', d)}" PACKAGES_DYNAMIC = "gst-plugin-*" |