diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2018-10-23 12:58:22 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-25 14:36:34 +0100 |
commit | 5f56ce58360320d7ef9526b3bdcc7e26a647b6de (patch) | |
tree | 5619fb2fd331b2931627b7d48a2fffc2b3ef9067 | |
parent | cadd91655a336eb6d65ca43dc1231bbe5271e1cf (diff) | |
download | openembedded-core-5f56ce58360320d7ef9526b3bdcc7e26a647b6de.tar.gz openembedded-core-5f56ce58360320d7ef9526b3bdcc7e26a647b6de.tar.bz2 openembedded-core-5f56ce58360320d7ef9526b3bdcc7e26a647b6de.zip |
libaio: extend to nativesdk
lvm2 currently requires libaio. So building nativesdk-lvm2 will
result in the following error.
ERROR: Required build target 'nativesdk-lvm2' has no buildable providers.
Missing or unbuildable dependency chain was: ['nativesdk-lvm2', 'nativesdk-libaio']
Extend libaio to nativesdk to fix this issue.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/libaio/libaio_0.3.111.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-extended/libaio/libaio_0.3.111.bb b/meta/recipes-extended/libaio/libaio_0.3.111.bb index 5bd83078ac..04b50b61ec 100644 --- a/meta/recipes-extended/libaio/libaio_0.3.111.bb +++ b/meta/recipes-extended/libaio/libaio_0.3.111.bb @@ -19,3 +19,5 @@ EXTRA_OEMAKE =+ "prefix=${prefix} includedir=${includedir} libdir=${libdir}" do_install () { oe_runmake install DESTDIR=${D} } + +BBCLASSEXTEND = "nativesdk" |