diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2019-08-06 22:41:21 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-30 16:44:41 +0100 |
commit | 5a44c8106125c07e350eeafa91fc6e461fecf5eb (patch) | |
tree | 2e466399ed24fc37e149a15645e2a952dfd230f4 | |
parent | 95632e679df13fd5a45725e3752c49986ed2fe73 (diff) | |
download | poky-5a44c8106125c07e350eeafa91fc6e461fecf5eb.tar.gz |
psmisc: Fix dependency for USE_NLS=no
When using USE_NLS="no" in the local.conf psmisc will fail to
compile as follows:
| autoreconf: Entering directory `.'
| autoreconf: running: autopoint --force
| autoreconf: failed to run autopoint: No such file or directory
| autoreconf: autopoint is needed because this package uses Gettext
| ERROR: autoreconf execution failed.
This is because the gettext.bbclass returns gettext-minimal-native for
the host dependency which does not include autopoint. The autopoint
utility is required to build psmisc, so it needs to list
gettext-native as a dependency.
(From OE-Core rev: 423115b70a4a2cdef4b3882ad4491446b84a1f1e)
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/psmisc/psmisc.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/psmisc/psmisc.inc b/meta/recipes-extended/psmisc/psmisc.inc index 82ef947709..594a10cf22 100644 --- a/meta/recipes-extended/psmisc/psmisc.inc +++ b/meta/recipes-extended/psmisc/psmisc.inc | |||
@@ -7,7 +7,7 @@ command sends a specified signal (SIGTERM if nothing is specified) to \ | |||
7 | processes identified by name. The fuser command identifies the PIDs \ | 7 | processes identified by name. The fuser command identifies the PIDs \ |
8 | of processes that are using specified files or filesystems." | 8 | of processes that are using specified files or filesystems." |
9 | SECTION = "base" | 9 | SECTION = "base" |
10 | DEPENDS = "ncurses virtual/libintl" | 10 | DEPENDS = "ncurses virtual/libintl gettext-native" |
11 | LICENSE = "GPLv2" | 11 | LICENSE = "GPLv2" |
12 | 12 | ||
13 | SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz" | 13 | SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz" |