summaryrefslogtreecommitdiffstats
path: root/package/powertop
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-07-03 23:14:08 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-07-05 01:34:03 +0200
commite43b76d716ce2424e4c12486c1a652620c0bd2b3 (patch)
tree13137a971c4ba5b91b7585763cd524aa624c4d38 /package/powertop
parentd24b8afb22c92bc8042f07d7e5073fb2f6f30dc0 (diff)
downloadbuildroot-e43b76d716ce2424e4c12486c1a652620c0bd2b3.tar.gz
buildroot-e43b76d716ce2424e4c12486c1a652620c0bd2b3.zip
powertop: use the new gettext logic
This commit switches to use the new gettext logic, which involves: - using TARGET_NLS_DEPENDENCIES instead of hand-encoded dependencies on gettext/host-gettext - using TARGET_NLS_LIBS to force linking against libintl - dropping BR2_PACKAGE_GETTEXT selection Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/powertop')
-rw-r--r--package/powertop/Config.in1
-rw-r--r--package/powertop/powertop.mk9
2 files changed, 3 insertions, 7 deletions
diff --git a/package/powertop/Config.in b/package/powertop/Config.in
index a532302a64..36701f8c64 100644
--- a/package/powertop/Config.in
+++ b/package/powertop/Config.in
@@ -7,7 +7,6 @@ config BR2_PACKAGE_POWERTOP
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_PCIUTILS
select BR2_PACKAGE_LIBNL
- select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
help
A tool to diagnose issues with power consumption and power management
diff --git a/package/powertop/powertop.mk b/package/powertop/powertop.mk
index 62b716f0f1..ce7a118758 100644
--- a/package/powertop/powertop.mk
+++ b/package/powertop/powertop.mk
@@ -7,14 +7,11 @@
POWERTOP_VERSION = 2.9
POWERTOP_SITE = https://01.org/sites/default/files/downloads/powertop
POWERTOP_SOURCE = powertop-v$(POWERTOP_VERSION).tar.gz
-POWERTOP_DEPENDENCIES = pciutils ncurses libnl host-gettext host-pkgconf
+POWERTOP_DEPENDENCIES = pciutils ncurses libnl host-pkgconf \
+ $(TARGET_NLS_DEPENDENCIES)
POWERTOP_LICENSE = GPL-2.0
POWERTOP_LICENSE_FILES = COPYING
-
-ifeq ($(BR2_NEEDS_GETTEXT),y)
-POWERTOP_DEPENDENCIES += gettext
-POWERTOP_CONF_ENV += LIBS='-lintl'
-endif
+POWERTOP_CONF_ENV = LIBS=$(TARGET_NLS_LIBS)
# Help powertop at finding the right ncurses library depending on
# which one is available.
OpenPOWER on IntegriCloud