diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-11-28 15:59:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-28 15:25:33 +0000 |
commit | 247b6a3754c2c50318e2a73d79981ba0e9cb560b (patch) | |
tree | f10577a3868ce51935c9483e58c36268d1ae9bcc /meta/recipes-multimedia/gstreamer/gst-plugins.inc | |
parent | f931aeb72e4bcc2c8138d9f1b55b1aea86e13b67 (diff) | |
download | poky-247b6a3754c2c50318e2a73d79981ba0e9cb560b.tar.gz |
gstreamer, gst-plugins*: fix localdata1.4_M1.rc11.4_M1.final1.4_M1
* all gst* packages were producing LC_MESSAGES/.mo instead of
LC_MESSAGES/gst*.mo and it was leading to file conflicts between gst*
packages too
* for more details see
http://lists.linuxtogo.org/pipermail/openembedded-core/2012-November/032233.html
* buildhistory diff, confirms issue fixed
https://github.com/shr-distribution/buildhistory/commit/f2c0888c0e08dfb33cc0cdf384621fc499d4ac04
* Thanks to Enrico for simplier solution
(From OE-Core rev: f50e2984d9411a059b86d6c158e9416fceb84c3d)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-plugins.inc')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-plugins.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc index 8799a91fc4..07b26a3a65 100644 --- a/meta/recipes-multimedia/gstreamer/gst-plugins.inc +++ b/meta/recipes-multimedia/gstreamer/gst-plugins.inc | |||
@@ -19,3 +19,9 @@ require gst-plugins-package.inc | |||
19 | 19 | ||
20 | PACKAGES_DYNAMIC += "^${PN}-.*" | 20 | PACKAGES_DYNAMIC += "^${PN}-.*" |
21 | 21 | ||
22 | # apply gstreamer hack after Makefile.in.in in source is replaced by our version from | ||
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 | ||
25 | oe_runconf_prepend() { | ||
26 | sed -i -e "1a\\" -e 'GETTEXT_PACKAGE = @GETTEXT_PACKAGE@' ${S}/po/Makefile.in.in | ||
27 | } | ||