package/procps-ng: needs gettext if locales

Fixes:
    http://autobuild.buildroot.net/results/88a/88a2c8907dce0e5abe0d544ce9a2875dfdcc9e7c/

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Yann E. MORIN 2014-06-03 12:11:14 +02:00 committed by Peter Korsgaard
parent c28a679080
commit 6a54ade566
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,7 @@
config BR2_PACKAGE_PROCPS_NG
bool "procps-ng"
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
help
Standard informational utilities and process-handling tools.
Provides things like kill, ps, uptime, free, top, etc...

View File

@ -12,4 +12,9 @@ PROCPS_NG_LICENSE_FILES = COPYING COPYING.LIB
PROCPS_NG_DEPENDENCIES = ncurses
ifeq ($(BR2_PACKAGE_GETTEXT),y)
PROCPS_NG_DEPENDENCIES += gettext
PROCPS_NG_CONF_OPT += LIBS=-lintl
endif
$(eval $(autotools-package))