diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-21 17:50:17 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-27 16:11:53 +0100 |
commit | ab332098ccf77a313b7a63040d33d52e3534da58 (patch) | |
tree | fc2cc22eb90e461f199a886637ed84dd5c38a6cf /meta | |
parent | 894df445fa71a170397c6e0b4960a89ef20a4230 (diff) | |
download | poky-ab332098ccf77a313b7a63040d33d52e3534da58.tar.gz |
taglib: Force a disable of the floating dependency on boost
taglib appears to depend on boost if it finds it in the sysroot. Force
it not to do this. Someone with better cmake skills may be able to
do this in a neater way.
(From OE-Core rev: 2c6c6c98416e5a458a02106524b5aa10a4b71d60)
(From OE-Core rev: 87fd1d7331f6f64a9037d97672dbe66d93f276de)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/taglib/taglib_1.9.1.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-support/taglib/taglib_1.9.1.bb b/meta/recipes-support/taglib/taglib_1.9.1.bb index 0ecb4443b2..0421f61481 100644 --- a/meta/recipes-support/taglib/taglib_1.9.1.bb +++ b/meta/recipes-support/taglib/taglib_1.9.1.bb | |||
@@ -24,5 +24,7 @@ EXTRA_OECMAKE = "-DLIB_SUFFIX=${@d.getVar('baselib', True).replace('lib', '')}" | |||
24 | do_configure_prepend () { | 24 | 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 | ||
28 | sed -i -e "s/atomic.hpp/atomic-not-exist.hpp/" ${S}/ConfigureChecks.cmake | ||
27 | } | 29 | } |
28 | 30 | ||