summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
diff options
context:
space:
mode:
authorKen Sloat <ken.s@variscite.com>2023-09-08 10:11:50 -0400
committerKen Sloat <ken.s@variscite.com>2023-09-08 10:11:50 -0400
commit2161cab753199b5e17b975805a7f081fda73998d (patch)
tree45ffcbefc378540c34f89cb930d329b9e7486263 /recipes-devtools
parent0ae633652b7bfb9a6c004702ef194a149106010c (diff)
downloadmeta-freescale-2161cab753199b5e17b975805a7f081fda73998d.tar.gz
uuu: Add missing zstd dependency
Since 1.4.243, uuu includes zstd support. Currently, this dependency is not specified, and thus if nativesdk-uuu is built, cmake will err during do_configure reporting that the package is missing. To fix this, add zstd to DEPENDS. Signed-off-by: Ken Sloat <ken.s@variscite.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r--recipes-devtools/uuu/uuu_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-devtools/uuu/uuu_git.bb b/recipes-devtools/uuu/uuu_git.bb
index 6b1ecb1f..2ff0ee5b 100644
--- a/recipes-devtools/uuu/uuu_git.bb
+++ b/recipes-devtools/uuu/uuu_git.bb
@@ -13,6 +13,6 @@ inherit cmake pkgconfig
13 13
14S = "${WORKDIR}/git" 14S = "${WORKDIR}/git"
15 15
16DEPENDS = "libusb zlib bzip2 openssl" 16DEPENDS = "libusb zlib bzip2 openssl zstd"
17 17
18BBCLASSEXTEND = "native nativesdk" 18BBCLASSEXTEND = "native nativesdk"