mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 00:32:12 +02:00
waffle: add cmake-native to DEPENDS
waffle currently requires cmake-native because it has the following lines
in git/src/waffle/meson.build.
if meson.version().version_compare('>= 0.50')
cmake = import('cmake')
In case of 'wayland' not being in DISTRO_FEATURES, we will get the
following error at do_configure.
| ../git/src/waffle/meson.build:233:8: ERROR: Unable to find cmake
So explictly add 'cmake-native' to DEPENDS to solve this problem.
(From OE-Core rev: 19753e7fff81a4252d0095b54d37d52db11e3f56)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -17,7 +17,7 @@ S = "${WORKDIR}/git"
|
||||
|
||||
inherit meson features_check lib_package bash-completion pkgconfig
|
||||
|
||||
DEPENDS:append = " python3"
|
||||
DEPENDS:append = " python3 cmake-native"
|
||||
|
||||
# This should be overridden per-machine to reflect the capabilities of the GL
|
||||
# stack.
|
||||
|
||||
Reference in New Issue
Block a user