summaryrefslogtreecommitdiff
path: root/package/powertop
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-03-21 09:39:22 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-03-21 09:39:22 +0100
commit198734f00ba858bd9d562aaa2e71ae76248b899e (patch)
tree86c8db1a47cfe6cab0aee5b22777c8d2ac7a4bc3 /package/powertop
parentb5423c2c3fbe19413450a73ac97b60b7e638aecf (diff)
powertop: only link against -lintl when needed
BR2_PACKAGE_GETTEXT=y might be enabled even if BR2_NEEDS_GETTEXT is not set, and in this case, we should not link against libintl, because it may not exist, for example with glibc toolchains. Fixes: http://autobuild.buildroot.net/results/270/270018e2c9e3845a4015faa155325eea2cabe3d9/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/powertop')
-rw-r--r--package/powertop/powertop.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/powertop/powertop.mk b/package/powertop/powertop.mk
index 43d70a30ad..b253a5668a 100644
--- a/package/powertop/powertop.mk
+++ b/package/powertop/powertop.mk
@@ -12,7 +12,7 @@ POWERTOP_LICENSE_FILES = COPYING
# We're patching Makefile.am
POWERTOP_AUTORECONF = YES
-ifeq ($(BR2_PACKAGE_GETTEXT),y)
+ifeq ($(BR2_NEEDS_GETTEXT),y)
POWERTOP_DEPENDENCIES += gettext
POWERTOP_CONF_ENV += LIBS='-lintl'
endif