diff options
author | Ross Burton <ross.burton@intel.com> | 2013-05-09 13:11:45 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 17:58:13 +0100 |
commit | c3cb65041834159a318df9c1a5a05f1ef36a2ebc (patch) | |
tree | 07da2a028275b1813ec47b51e65f8778c5a03065 /meta/recipes-kernel | |
parent | 0977a6868e178208b5fc8de22b4e1a9d13959655 (diff) | |
download | poky-c3cb65041834159a318df9c1a5a05f1ef36a2ebc.tar.gz |
powertop: inherit gettext
powertop uses gettext during config time and at build time to generate the
messages, so really should inherit gettext.
[YOCTO #4470]
(From OE-Core rev: 8ca272168e3cf9abcab13096a3c4eaadb7e35841)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/powertop/powertop_1.13.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-kernel/powertop/powertop_1.13.bb b/meta/recipes-kernel/powertop/powertop_1.13.bb index db54ed0f59..37d0ea576f 100644 --- a/meta/recipes-kernel/powertop/powertop_1.13.bb +++ b/meta/recipes-kernel/powertop/powertop_1.13.bb | |||
@@ -6,12 +6,12 @@ BUGTRACKER = "http://bugzilla.lesswatts.org/" | |||
6 | LICENSE = "GPLv2" | 6 | LICENSE = "GPLv2" |
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" |
8 | 8 | ||
9 | DEPENDS = "virtual/libintl ncurses" | 9 | DEPENDS = "ncurses" |
10 | 10 | ||
11 | # powertop 1.13 needs lspci | 11 | # powertop 1.13 needs lspci |
12 | RDEPENDS_${PN} = "pciutils" | 12 | RDEPENDS_${PN} = "pciutils" |
13 | 13 | ||
14 | PR = "r4" | 14 | PR = "r5" |
15 | 15 | ||
16 | SRC_URI = "http://www.lesswatts.org/projects/powertop/download/powertop-${PV}.tar.gz \ | 16 | SRC_URI = "http://www.lesswatts.org/projects/powertop/download/powertop-${PV}.tar.gz \ |
17 | file://stub_out_the_ncurses_calls_in_dump_mode.patch \ | 17 | file://stub_out_the_ncurses_calls_in_dump_mode.patch \ |
@@ -20,6 +20,8 @@ SRC_URI = "http://www.lesswatts.org/projects/powertop/download/powertop-${PV}.ta | |||
20 | SRC_URI[md5sum] = "78aa17c8f55178004223bf236654298e" | 20 | SRC_URI[md5sum] = "78aa17c8f55178004223bf236654298e" |
21 | SRC_URI[sha256sum] = "2bc866089496877dd26d2d316ad5763ab8ecb5e28aefba44bc5d355dcdc58d98" | 21 | SRC_URI[sha256sum] = "2bc866089496877dd26d2d316ad5763ab8ecb5e28aefba44bc5d355dcdc58d98" |
22 | 22 | ||
23 | inherit gettext | ||
24 | |||
23 | CFLAGS += "${LDFLAGS}" | 25 | CFLAGS += "${LDFLAGS}" |
24 | EXTRA_OEMAKE = "VERSION=\"${PV}\" EXTRA_LIBS=${EXTRA_LIBS}" | 26 | EXTRA_OEMAKE = "VERSION=\"${PV}\" EXTRA_LIBS=${EXTRA_LIBS}" |
25 | 27 | ||