]> code.ossystems Code Review - openembedded-core.git/commitdiff
taglib: Fix cmake floating dependency on boost
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 2 Mar 2015 18:05:36 +0000 (18:05 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 2 Mar 2015 18:06:47 +0000 (18:06 +0000)
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>
meta/recipes-support/taglib/taglib_1.9.1.bb

index 746ed7e0c05beb1a99855e9cacdcbdf277ffb4ff..1f278144e35e6d6f436a37c568755a72f9a38603 100644 (file)
@@ -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
 }