From 01cd62a31c2e04ea9acaca9cfca527a938e40e85 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Tue, 10 Jan 2017 10:06:46 -0300 Subject: [PATCH] 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 --- package/collectd/collectd.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 -- 2.30.2