[oe-commits] [openembedded-core] 17/54: psmisc: Fix dependency for USE_NLS=no

git at git.openembedded.org git at git.openembedded.org
Mon Sep 30 15:45:20 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch warrior
in repository openembedded-core.

commit 423115b70a4a2cdef4b3882ad4491446b84a1f1e
Author: Jason Wessel <jason.wessel at windriver.com>
AuthorDate: Tue Aug 6 22:41:21 2019 +0300

    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.
    
    Signed-off-by: Jason Wessel <jason.wessel at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Adrian Bunk <bunk at stusta.de>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/recipes-extended/psmisc/psmisc.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/psmisc/psmisc.inc b/meta/recipes-extended/psmisc/psmisc.inc
index 82ef947..594a10c 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 \
 processes identified by name.  The fuser command identifies the PIDs \
 of processes that are using specified files or filesystems."
 SECTION = "base"
-DEPENDS = "ncurses virtual/libintl"
+DEPENDS = "ncurses virtual/libintl gettext-native"
 LICENSE = "GPLv2"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list