From: Eric Andersen Date: Sat, 27 Mar 2004 10:08:53 +0000 (-0000) Subject: passwd and sulogin also need libcrypt, via libbb/pw_encrypt() X-Git-Tag: 1_00_pre9~50 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ea9bcda3730b6403fd3ed23670ce818b6926ae67;p=oweals%2Fbusybox.git passwd and sulogin also need libcrypt, via libbb/pw_encrypt() --- 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