From: Gustavo Zacarias Date: Tue, 10 Jan 2017 13:06:46 +0000 (-0300) Subject: collectd: fix libgcrypt support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=01cd62a31c2e04ea9acaca9cfca527a938e40e85;p=buildroot.git collectd: fix libgcrypt support For the newer versions the collectd configure script expects libgcrypt-config as parameter rather than the location for the libgcrypt-config script. Adjust the package to account for this. Fixes: http://autobuild.buildroot.net/results/a49/a494bc905e4509528c4932f76a094b9ea8e70bd3/ Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk index 7ab7dd4223..fa6ebae71f 100644 --- a/package/collectd/collectd.mk +++ b/package/collectd/collectd.mk @@ -175,8 +175,7 @@ endif # network can use libgcrypt ifeq ($(BR2_PACKAGE_LIBGCRYPT),y) COLLECTD_DEPENDENCIES += libgcrypt -COLLECTD_CONF_OPTS += --with-libgcrypt=$(STAGING_DIR)/usr -COLLECTD_CONF_ENV += LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config +COLLECTD_CONF_OPTS += --with-libgcrypt=$(STAGING_DIR)/usr/bin/libgcrypt-config else COLLECTD_CONF_OPTS += --with-libgcrypt=no endif