aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-02 18:05:36 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-02 18:06:47 +0000
commit779f92454218ae3758f0768763df3b183a6c724a (patch)
treef19ac470a83812b2dadbe0ea0cf61500b66ac388 /meta/recipes-support
parent37e6e62f0faae3fa16421b051599aea0e03a5825 (diff)
downloadopenembedded-core-contrib-779f92454218ae3758f0768763df3b183a6c724a.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. 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.bb2
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 () {
rm -f ${S}/admin/ltmain.sh
rm -f ${S}/admin/libtool.m4.in
# Don't have a floating dependeny on boost
- sed -i -e "s/atomic.hpp/atomic-not-exist.hpp/" ${S}/ConfigureChecks.cmake
+ sed -i -e "s/atomic.hpp/atomic-not-exist.hpp/" ${S}/ConfigureChecks.cmake ${S}/taglib/toolkit/trefcounter.cpp
}