diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2018-12-22 23:13:21 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-25 22:25:08 +0000 |
commit | 6c9b23b77e62ed382d44f94849c13c1f831e64a7 (patch) | |
tree | b1b136e9a1846d8f6156b5eaa99c0a0964a976da | |
parent | 4b1bd35030c5502873106782a35c4f5a9446e20c (diff) | |
download | openembedded-core-6c9b23b77e62ed382d44f94849c13c1f831e64a7.tar.gz openembedded-core-6c9b23b77e62ed382d44f94849c13c1f831e64a7.tar.bz2 openembedded-core-6c9b23b77e62ed382d44f94849c13c1f831e64a7.zip |
libaio: Extend to native
lvm2 currently requires libaio. So building lvm2-native will result in
the following error.
ERROR: Required build target 'lvm2-native' has no buildable providers.
Missing or unbuildable dependency chain was: ['lvm2-native', 'libaio-native']
Extend libaio to native to fix this issue.
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta/recipes-extended/libaio/libaio_0.3.111.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/libaio/libaio_0.3.111.bb b/meta/recipes-extended/libaio/libaio_0.3.111.bb index 04b50b61ec..8e1cd349a0 100644 --- a/meta/recipes-extended/libaio/libaio_0.3.111.bb +++ b/meta/recipes-extended/libaio/libaio_0.3.111.bb @@ -20,4 +20,4 @@ do_install () { oe_runmake install DESTDIR=${D} } -BBCLASSEXTEND = "nativesdk" +BBCLASSEXTEND = "native nativesdk" |