From c28d3dcb51387e9403c83d25feb41798341fcd29 Mon Sep 17 00:00:00 2001 From: Etienne Champetier Date: Fri, 10 Dec 2021 18:57:10 +0200 Subject: [PATCH] htop: explicitly disable some build options Since 3.1.0 delayacct option is enabled if the needed dependencies are detected, it was previously disabled. Sensors also check for dependency so we need to explicitly disable it when not enabled. Fixes 5f916720551ad5ea5ac86cf5e122fc2c0c34cc15 Signed-off-by: Etienne Champetier (cherry picked from commit 253e3f558c9d5d6ee43a7e870ef60f8a1c0c80c7) --- admin/htop/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/admin/htop/Makefile b/admin/htop/Makefile index e2db3847e0..179863ad57 100644 --- a/admin/htop/Makefile +++ b/admin/htop/Makefile @@ -56,9 +56,10 @@ define Package/htop/config endef CONFIGURE_ARGS += \ - $(if $(CONFIG_HTOP_LMSENSORS),--enable-sensors,) \ + --$(if $(CONFIG_HTOP_LMSENSORS),en,dis)able-sensors \ --enable-affinity \ - --enable-capabilities=no \ + --disable-capabilities \ + --disable-delayacct \ --disable-unicode \ --disable-hwloc -- 2.30.2