From a1914921ebc3c5d5720d7249e3dc2e5d030471f4 Mon Sep 17 00:00:00 2001 From: Jack Kao Date: Sun, 25 Dec 2016 21:54:34 +0800 Subject: collectd: fix option passed to the snmp dependency --with-libnetsnmp doesn't take a path to the netsnmp config script, but to the sysroot where netsnmp can be found. Fixes: http://autobuild.buildroot.org/results/358e2f02f42e08fe362ecd46e636c0048e77c21f/ Signed-off-by: Jack Kao [Thomas: path is $(STAGING_DIR)/usr, not $(STAGING_DIR)/usr/include.] Signed-off-by: Thomas Petazzoni --- package/collectd/collectd.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/collectd') diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk index 50a2e53efa..28c1b31e09 100644 --- a/package/collectd/collectd.mk +++ b/package/collectd/collectd.mk @@ -162,7 +162,7 @@ ifeq ($(BR2_PACKAGE_MYSQL),y) COLLECTD_CONF_OPTS += --with-libmysql=$(STAGING_DIR)/usr endif ifeq ($(BR2_PACKAGE_NETSNMP),y) -COLLECTD_CONF_OPTS += --with-libnetsnmp=$(STAGING_DIR)/usr/bin/net-snmp-config +COLLECTD_CONF_OPTS += --with-libnetsnmp=$(STAGING_DIR)/usr endif ifeq ($(BR2_PACKAGE_POSTGRESQL),y) COLLECTD_CONF_OPTS += --with-libpq=$(STAGING_DIR)/usr/bin/pg_config -- cgit v1.2.1