summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2017-08-21 14:15:01 +0300
committerLeon Anavi <leon.anavi@konsulko.com>2017-08-23 09:29:12 +0300
commitfefc668694382881fa43e7afaf2a445c867a5df2 (patch)
treefadcab7292979f0a68d75c329160b069302afe3e
parent4e5064a1caae234a2ba755c246803d550234fd2b (diff)
downloadmeta-updater-fefc668694382881fa43e7afaf2a445c867a5df2.tar.gz
ostree_git.bb: Depends on xz for liblzma
Move Yocto/OE recipe xz from the run-time dependencies to the dependencies because liblzma is required for the successful configuration of OSTree. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
-rw-r--r--recipes-sota/ostree/ostree_git.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-sota/ostree/ostree_git.bb b/recipes-sota/ostree/ostree_git.bb
index 84e86e2..8937e5e 100644
--- a/recipes-sota/ostree/ostree_git.bb
+++ b/recipes-sota/ostree/ostree_git.bb
@@ -16,11 +16,11 @@ S = "${WORKDIR}/git"
16 16
17BBCLASSEXTEND = "native" 17BBCLASSEXTEND = "native"
18 18
19DEPENDS += "attr libarchive glib-2.0 pkgconfig gpgme libgsystem fuse libsoup-2.4 e2fsprogs gtk-doc-native curl" 19DEPENDS += "attr libarchive glib-2.0 pkgconfig gpgme libgsystem fuse libsoup-2.4 e2fsprogs gtk-doc-native curl xz"
20DEPENDS_append = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', ' systemd', '', d)}" 20DEPENDS_append = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', ' systemd', '', d)}"
21DEPENDS_remove_class-native = "systemd-native" 21DEPENDS_remove_class-native = "systemd-native"
22 22
23RDEPENDS_${PN} = "python util-linux-libuuid util-linux-libblkid util-linux-libmount libcap xz bash" 23RDEPENDS_${PN} = "python util-linux-libuuid util-linux-libblkid util-linux-libmount libcap bash"
24RDEPENDS_${PN}_remove_class-native = "python-native" 24RDEPENDS_${PN}_remove_class-native = "python-native"
25 25
26EXTRA_OECONF = "--with-libarchive --disable-gtk-doc --disable-gtk-doc-html --disable-gtk-doc-pdf --disable-man --with-smack --with-builtin-grub2-mkconfig --with-curl" 26EXTRA_OECONF = "--with-libarchive --disable-gtk-doc --disable-gtk-doc-html --disable-gtk-doc-pdf --disable-man --with-smack --with-builtin-grub2-mkconfig --with-curl"