All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] package/htop: fix sensors option
@ 2022-04-03 11:04 Fabrice Fontaine
  2022-04-03 11:04 ` [Buildroot] [PATCH 2/3] package/htop: use official tarball Fabrice Fontaine
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Fabrice Fontaine @ 2022-04-03 11:04 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Commit 811846df48745d58d96f6c0fbab0dec5f17d614b wrongly used
--{with,without}-sensors instead of --{dis,en}able-sensors

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/htop/htop.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/htop/htop.mk b/package/htop/htop.mk
index 7caa47ce13..210518da2f 100644
--- a/package/htop/htop.mk
+++ b/package/htop/htop.mk
@@ -28,10 +28,10 @@ HTOP_CONF_OPTS += --disable-capabilities
 endif
 
 ifeq ($(BR2_PACKAGE_LM_SENSORS),y)
-HTOP_CONF_OPTS += --with-sensors
+HTOP_CONF_OPTS += --enable-sensors
 HTOP_DEPENDENCIES += lm-sensors
 else
-HTOP_CONF_OPTS += --without-sensors
+HTOP_CONF_OPTS += --disable-sensors
 endif
 
 ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y)
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-04-04 17:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-03 11:04 [Buildroot] [PATCH 1/3] package/htop: fix sensors option Fabrice Fontaine
2022-04-03 11:04 ` [Buildroot] [PATCH 2/3] package/htop: use official tarball Fabrice Fontaine
2022-04-04 17:51   ` Peter Korsgaard
2022-04-03 11:04 ` [Buildroot] [PATCH 3/3] package/htop: fix hwloc static build Fabrice Fontaine
2022-04-04 17:49   ` Peter Korsgaard
2022-04-03 18:58 ` [Buildroot] [PATCH 1/3] package/htop: fix sensors option Yann E. MORIN
2022-04-04 17:48 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.