diff options
author | Samuel Martin <s.martin49@gmail.com> | 2014-04-21 07:54:54 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-21 10:34:48 +0200 |
commit | cb39b46f6007d02ba8db7611b5f11705b96e6cd1 (patch) | |
tree | b57853573f81fdaafe2b7f9c012cc4891187cdf5 | |
parent | e3de3ae58e830729bde1fcdc7da634567f4f3fa2 (diff) | |
download | buildroot-cb39b46f6007d02ba8db7611b5f11705b96e6cd1.tar.gz buildroot-cb39b46f6007d02ba8db7611b5f11705b96e6cd1.zip |
util-linux: fix chfn/chsh missing dependencies
chfn/chsh utilities need linux-pam.
Fixes:
http://autobuild.buildroot.org/results/cfc/cfc5fd00b9db21b60efe8b74e9966b6192b1da17/
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/util-linux/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in index cef80090e6..28bda11e0b 100644 --- a/package/util-linux/Config.in +++ b/package/util-linux/Config.in @@ -58,9 +58,14 @@ config BR2_PACKAGE_UTIL_LINUX_ARCH config BR2_PACKAGE_UTIL_LINUX_CHFN_CHSH bool "chfn/chsh" + select BR2_PACKAGE_LINUX_PAM + depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR) # linux-pam help Change login shell, real user name and information +comment "chfn/chsh needs a toolchain w/ wchar, locale" + depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) + config BR2_PACKAGE_UTIL_LINUX_CRAMFS bool "cramfs utilities" select BR2_PACKAGE_ZLIB |