diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-02 18:05:36 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-02 18:06:53 +0000 |
commit | bf1a68e97f2069a4f66664c351d4bafd416358eb (patch) | |
tree | 6bd0eefc6152be7516dc184637a86123a84bb21e /meta/recipes-support | |
parent | bf59b22d14f2f615022475ba85a20ba6ae58c98c (diff) | |
download | poky-bf1a68e97f2069a4f66664c351d4bafd416358eb.tar.gz |
taglib: Fix cmake floating dependency on boost
The previous fix for this issue was incomplete. We also need to change
the source file to avoid this error. Grepping the build directory for boost
will show the issue when building taglib after boost has been built.
(From OE-Core rev: 779f92454218ae3758f0768763df3b183a6c724a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/taglib/taglib_1.9.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/taglib/taglib_1.9.1.bb b/meta/recipes-support/taglib/taglib_1.9.1.bb index 746ed7e0c0..1f278144e3 100644 --- a/meta/recipes-support/taglib/taglib_1.9.1.bb +++ b/meta/recipes-support/taglib/taglib_1.9.1.bb | |||
@@ -25,6 +25,6 @@ do_configure_prepend () { | |||
25 | rm -f ${S}/admin/ltmain.sh | 25 | rm -f ${S}/admin/ltmain.sh |
26 | rm -f ${S}/admin/libtool.m4.in | 26 | rm -f ${S}/admin/libtool.m4.in |
27 | # Don't have a floating dependeny on boost | 27 | # Don't have a floating dependeny on boost |
28 | sed -i -e "s/atomic.hpp/atomic-not-exist.hpp/" ${S}/ConfigureChecks.cmake | 28 | sed -i -e "s/atomic.hpp/atomic-not-exist.hpp/" ${S}/ConfigureChecks.cmake ${S}/taglib/toolkit/trefcounter.cpp |
29 | } | 29 | } |
30 | 30 | ||