From: Thomas Petazzoni Date: Sun, 2 Jul 2017 21:16:42 +0000 (+0200) Subject: rauc: add missing dependencies for host variant X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c7966d22e53ac83f2d8fe41b1a04c3f598502f4;p=buildroot.git rauc: add missing dependencies for host variant rauc unconditionally needs OpenSSL and libglib2. Those dependencies were properly accounted for the target variant, but not the host variant, causing build failures. This commit adds the missing dependencies. Fixes: http://autobuild.buildroot.net/results/2695202ee3b0734430abc2db03828a45cd5e5ef5 (host-openssl missing) http://autobuild.buildroot.net/results/77a5db1120bf90ccaac00cfc0a8db358cacd894c (host-libglib2 missing) Signed-off-by: Thomas Petazzoni --- diff --git a/package/rauc/rauc.mk b/package/rauc/rauc.mk index 12819d9251..479a583206 100644 --- a/package/rauc/rauc.mk +++ b/package/rauc/rauc.mk @@ -29,7 +29,7 @@ ifeq ($(BR2_PACKAGE_SYSTEMD),y) RAUC_DEPENDENCIES += systemd endif -HOST_RAUC_DEPENDENCIES = host-pkgconf +HOST_RAUC_DEPENDENCIES = host-pkgconf host-openssl host-libglib2 HOST_RAUC_CONF_OPTS += --disable-network --disable-json --disable-service $(eval $(autotools-package))