mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
meson.bbclass: Prevent meson from downloading wrapped projects
Meson has support for downloading subprojects using something called wraps. This interferes with bitbake's expectations of all downloads being done by the fetch task. To avoid this, tell meson to not download any wraps. Suggested-by: Mattias Jernberg <mattias.jernberg@axis.com> (From OE-Core rev: b547637ad84bad8f7fe27193bf636541f8588ae8) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
450cf4926a
commit
e68e623ef3
@@ -24,7 +24,8 @@ MESONOPTS = " --prefix ${prefix} \
|
||||
--infodir ${@noprefix('infodir', d)} \
|
||||
--sysconfdir ${sysconfdir} \
|
||||
--localstatedir ${localstatedir} \
|
||||
--sharedstatedir ${sharedstatedir} "
|
||||
--sharedstatedir ${sharedstatedir} \
|
||||
--wrap-mode nodownload"
|
||||
|
||||
EXTRA_OEMESON_append = " ${PACKAGECONFIG_CONFARGS}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user