opkg: gpg support needs libgpg-error
Fixes: http://autobuild.buildroot.net/results/1ec/1ec6990354016a740a8f54e07066e5fa4e732ab0/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
f71a621d91
commit
de823a5bd3
@ -23,6 +23,7 @@ if BR2_PACKAGE_OPKG
|
|||||||
config BR2_PACKAGE_OPKG_GPG_SIGN
|
config BR2_PACKAGE_OPKG_GPG_SIGN
|
||||||
bool "gnupg support"
|
bool "gnupg support"
|
||||||
select BR2_PACKAGE_LIBGPGME
|
select BR2_PACKAGE_LIBGPGME
|
||||||
|
select BR2_PACKAGE_LIBGPG_ERROR
|
||||||
help
|
help
|
||||||
Enable opkg package signature checking support using
|
Enable opkg package signature checking support using
|
||||||
gnupg/libgpgme.
|
gnupg/libgpgme.
|
||||||
|
@ -22,8 +22,10 @@ endef
|
|||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_OPKG_GPG_SIGN),y)
|
ifeq ($(BR2_PACKAGE_OPKG_GPG_SIGN),y)
|
||||||
OPKG_CONF_OPTS += --enable-gpg
|
OPKG_CONF_OPTS += --enable-gpg
|
||||||
OPKG_CONF_ENV = ac_cv_path_GPGME_CONFIG=$(STAGING_DIR)/usr/bin/gpgme-config
|
OPKG_CONF_ENV += \
|
||||||
OPKG_DEPENDENCIES += libgpgme
|
ac_cv_path_GPGME_CONFIG=$(STAGING_DIR)/usr/bin/gpgme-config \
|
||||||
|
ac_cv_path_GPGERR_CONFIG=$(STAGING_DIR)/usr/bin/gpg-error-config
|
||||||
|
OPKG_DEPENDENCIES += libgpgme libgpg-error
|
||||||
else
|
else
|
||||||
OPKG_CONF_OPTS += --disable-gpg
|
OPKG_CONF_OPTS += --disable-gpg
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user