diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-03-27 10:08:53 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-03-27 10:08:53 +0000 |
commit | ea9bcda3730b6403fd3ed23670ce818b6926ae67 (patch) | |
tree | f0267e4a71f303de5b0e61a3758b3b9ec306e694 /loginutils | |
parent | 70060d25d23278f6b636a535edca4a0c4006decd (diff) |
passwd and sulogin also need libcrypt, via libbb/pw_encrypt()
Diffstat (limited to 'loginutils')
-rw-r--r-- | loginutils/Makefile.in | 9 |
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 |