From: Peter Seiderer Date: Thu, 3 Oct 2019 15:29:22 +0000 (+0200) Subject: package/collectd: needs host-bison X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b993e3295fe7bccfbe8dc25b00558d4ffb174169;p=buildroot.git package/collectd: needs host-bison Since 5.9.1 the file src/liboconfig/parser.c is missing from the tar download file, triggering the need for host-bison. Fixes [1]: configure: error: bison is missing and you do not have ./src/liboconfig/parser.c. Please install bison [1] http://autobuild.buildroot.net/results/4e6f3e5fd0e64f166ae4f7db4832b37ae1fa99e0 Signed-off-by: Peter Seiderer Signed-off-by: Thomas Petazzoni --- diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk index 1681d556b6..2f60b4561e 100644 --- a/package/collectd/collectd.mk +++ b/package/collectd/collectd.mk @@ -143,7 +143,10 @@ COLLECTD_CONF_OPTS += \ $(if $(BR2_PACKAGE_COLLECTD_WRITETSDB),--enable-write_tsdb,--disable-write_tsdb) \ $(if $(BR2_PACKAGE_COLLECTD_ZOOKEEPER),--enable-zookeeper,--disable-zookeeper) +# since 5.9.1 the file src/liboconfig/parser.c is missing from the tar +# download file, triggering the need for host-bison COLLECTD_DEPENDENCIES = \ + host-bison \ host-pkgconf \ $(if $(BR2_PACKAGE_COLLECTD_AMQP),rabbitmq-c) \ $(if $(BR2_PACKAGE_COLLECTD_APACHE),libcurl) \