diff options
author | Gary Thomas <gary@mlbassoc.com> | 2012-11-29 13:06:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-03 14:32:46 +0000 |
commit | 59aaa92e9da79b1e4d400cac300b294fc1e4f73c (patch) | |
tree | 9e231f1b4ca03e626527e186cd33a343f9cda214 /meta/recipes-multimedia | |
parent | 88a9f6db3482623c9cb54fb03db1045051cec9f6 (diff) | |
download | poky-59aaa92e9da79b1e4d400cac300b294fc1e4f73c.tar.gz |
gstreamer: Fix plugin builds
Not all gstreamer plugins have localized documentation trees.
The commit
commit f50e2984d9411a059b86d6c158e9416fceb84c3d
Author: Martin Jansa <martin.jansa@gmail.com>
Date: Wed Nov 28 15:59:48 2012 +0100
breaks the build for such packages because the file "po/Makefile.in.in"
is not present.
This change allows building without the po/ subdirectory.
(From OE-Core rev: 4f5e5e28aa57b931ed297d08756a76bbcd8258f1)
Signed-off-by: Gary Thomas <gary@mlbassoc.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-plugins.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc index 07b26a3a65..fc9567a3f8 100644 --- a/meta/recipes-multimedia/gstreamer/gst-plugins.inc +++ b/meta/recipes-multimedia/gstreamer/gst-plugins.inc | |||
@@ -23,5 +23,7 @@ PACKAGES_DYNAMIC += "^${PN}-.*" | |||
23 | # ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in, but before configure is executed | 23 | # ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in, but before configure is executed |
24 | # http://lists.linuxtogo.org/pipermail/openembedded-core/2012-November/032233.html | 24 | # http://lists.linuxtogo.org/pipermail/openembedded-core/2012-November/032233.html |
25 | oe_runconf_prepend() { | 25 | oe_runconf_prepend() { |
26 | sed -i -e "1a\\" -e 'GETTEXT_PACKAGE = @GETTEXT_PACKAGE@' ${S}/po/Makefile.in.in | 26 | if [ -e ${S}/po/Makefile.in.in ]; then |
27 | sed -i -e "1a\\" -e 'GETTEXT_PACKAGE = @GETTEXT_PACKAGE@' ${S}/po/Makefile.in.in | ||
28 | fi | ||
27 | } | 29 | } |