aboutsummaryrefslogtreecommitdiff
path: root/loginutils
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-03-27 10:08:53 +0000
committerEric Andersen <andersen@codepoet.org>2004-03-27 10:08:53 +0000
commitea9bcda3730b6403fd3ed23670ce818b6926ae67 (patch)
treef0267e4a71f303de5b0e61a3758b3b9ec306e694 /loginutils
parent70060d25d23278f6b636a535edca4a0c4006decd (diff)
downloadbusybox-ea9bcda3730b6403fd3ed23670ce818b6926ae67.tar.gz
passwd and sulogin also need libcrypt, via libbb/pw_encrypt()
Diffstat (limited to 'loginutils')
-rw-r--r--loginutils/Makefile.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/loginutils/Makefile.in b/loginutils/Makefile.in
index 87c0a5c4e..d6ffd3b6c 100644
--- a/loginutils/Makefile.in
+++ b/loginutils/Makefile.in
@@ -37,9 +37,12 @@ LOGINUTILS-$(CONFIG_DELGROUP) += delgroup.o
libraries-y+=$(LOGINUTILS_DIR)$(LOGINUTILS_AR)
needcrypt-y:=
-needcrypt-$(CONFIG_LOGIN) := y
-needcrypt-$(CONFIG_SU) := y
-needcrypt-$(CONFIG_VLOCK) := y
+needcrypt-$(CONFIG_LOGIN) := y
+needcrypt-$(CONFIG_PASSWD) := y
+needcrypt-$(CONFIG_SU) := y
+needcrypt-$(CONFIG_SULOGIN) := y
+needcrypt-$(CONFIG_VLOCK) := y
+
ifeq ($(needcrypt-y),y)
LIBRARIES += -lcrypt