Commit c19bf136 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

libsecret: specify where libgcrypt lives

When libgcrypt support is enabled the configure script will try to
find libgcrypt-config in the PATH. If the host distribution has it then
brokeness ensues. Fixes:
http://autobuild.buildroot.net/results/eca/eca10b8360354e7e51406f7ac942d343987bde5e/



Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 102e6c72
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -16,7 +16,8 @@ LIBSECRET_CONF_OPT = --disable-manpages --disable-strict --disable-coverage --en

ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
	LIBSECRET_DEPENDENCIES += libgcrypt
	LIBSECRET_CONF_OPT += --enable-gcrypt
	LIBSECRET_CONF_OPT += --enable-gcrypt \
		--with-libgcrypt-prefix=$(STAGING_DIR)/usr
else
	LIBSECRET_CONF_OPT += --disable-gcrypt
endif