diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-02 23:16:42 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-02 23:16:42 +0200 |
commit | 8c7966d22e53ac83f2d8fe41b1a04c3f598502f4 (patch) | |
tree | 9c1421e11d650a55f2fb1a4e7cebc947ec99e36e | |
parent | 2d837933e55216dc31a2206b063689cfd04a4c01 (diff) | |
download | buildroot-8c7966d22e53ac83f2d8fe41b1a04c3f598502f4.tar.gz buildroot-8c7966d22e53ac83f2d8fe41b1a04c3f598502f4.zip |
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 <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/rauc/rauc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |