| Message ID | 20260731191523.2153901-3-ross.burton@arm.com |
|---|---|
| State | Under Review |
| Headers | show |
| Series | [1/4] librav1e: add missing libgit2 build dependency | expand |
diff --git a/meta-oe/recipes-extended/lsd/lsd_1.2.0.bb b/meta-oe/recipes-extended/lsd/lsd_1.2.0.bb index 7310e56a78..a79616ef6e 100644 --- a/meta-oe/recipes-extended/lsd/lsd_1.2.0.bb +++ b/meta-oe/recipes-extended/lsd/lsd_1.2.0.bb @@ -13,7 +13,9 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=153d2db1c329326a2d9f881317ea942e" SRC_URI = "git://github.com/lsd-rs/lsd.git;protocol=https;branch=main;tag=v${PV}" SRCREV = "d5a4e1cb80626d5ec94b237f6b77f7280d0f2fc9" -inherit cargo cargo-update-recipe-crates +DEPENDS = "libgit2" + +inherit cargo cargo-update-recipe-crates pkgconfig require ${BPN}-crates.inc
Needed since our cargo class now stops the git2-sys crate from using a bundled copy of libgit2. Also inherit pkgconfig as that is used to find the system libgit2. Signed-off-by: Ross Burton <ross.burton@arm.com> --- meta-oe/recipes-extended/lsd/lsd_1.2.0.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)