mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
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>
This commit is contained in:
@@ -7,7 +7,6 @@ config BR2_PACKAGE_POWERTOP
|
|||||||
select BR2_PACKAGE_NCURSES
|
select BR2_PACKAGE_NCURSES
|
||||||
select BR2_PACKAGE_PCIUTILS
|
select BR2_PACKAGE_PCIUTILS
|
||||||
select BR2_PACKAGE_LIBNL
|
select BR2_PACKAGE_LIBNL
|
||||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
|
|
||||||
help
|
help
|
||||||
A tool to diagnose issues with power consumption and power management
|
A tool to diagnose issues with power consumption and power management
|
||||||
|
|
||||||
|
|||||||
@@ -7,14 +7,11 @@
|
|||||||
POWERTOP_VERSION = 2.9
|
POWERTOP_VERSION = 2.9
|
||||||
POWERTOP_SITE = https://01.org/sites/default/files/downloads/powertop
|
POWERTOP_SITE = https://01.org/sites/default/files/downloads/powertop
|
||||||
POWERTOP_SOURCE = powertop-v$(POWERTOP_VERSION).tar.gz
|
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 = GPL-2.0
|
||||||
POWERTOP_LICENSE_FILES = COPYING
|
POWERTOP_LICENSE_FILES = COPYING
|
||||||
|
POWERTOP_CONF_ENV = LIBS=$(TARGET_NLS_LIBS)
|
||||||
ifeq ($(BR2_NEEDS_GETTEXT),y)
|
|
||||||
POWERTOP_DEPENDENCIES += gettext
|
|
||||||
POWERTOP_CONF_ENV += LIBS='-lintl'
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Help powertop at finding the right ncurses library depending on
|
# Help powertop at finding the right ncurses library depending on
|
||||||
# which one is available.
|
# which one is available.
|
||||||
|
|||||||
Reference in New Issue
Block a user