From ae13a0299d56cc6cd01c93a18a01626e589e4829 Mon Sep 17 00:00:00 2001 From: Eneas U de Queiroz Date: Thu, 15 Sep 2022 10:18:40 -0300 Subject: [PATCH] nut: avoid picking up libi2c dependency Add --without-linux-i2c to configure arguments to avoid using i2c if found in the staging dir. Switch to AUTORELEASE. Signed-off-by: Eneas U de Queiroz --- net/nut/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/nut/Makefile b/net/nut/Makefile index 879f8287..53c0a84d 100644 --- a/net/nut/Makefile +++ b/net/nut/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=nut PKG_VERSION:=2.8.0 -PKG_RELEASE:=1 +PKG_RELEASE:=$(AUTORELEASE) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.networkupstools.org/source/2.8/ @@ -541,6 +541,7 @@ CONFIGURE_ARGS += \ --with$(if $(CONFIG_PACKAGE_nut-web-cgi),,out)-cgi \ --without-ipmi \ --without-freeipmi \ + --without-linux-i2c \ --$(if $(CONFIG_NUT_SSL),with,without)-ssl $(if $(CONFIG_NUT_SSL),--with-openssl) \ --without-libltdl \ --without-macosx_ups \