From: Denis Vlasenko Date: Fri, 18 May 2007 00:02:37 +0000 (-0000) Subject: we were basically ignoring CONFIG_USE_BB_PWD_GRP (assuming =y), X-Git-Tag: 1_6_0~49 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=78e48b2c2c68aebe3a15201df3191c5725dc9e9b;p=oweals%2Fbusybox.git we were basically ignoring CONFIG_USE_BB_PWD_GRP (assuming =y), fix this --- diff --git a/libpwdgrp/Kbuild b/libpwdgrp/Kbuild index 9e60ef1e5..f9f1ddbf3 100644 --- a/libpwdgrp/Kbuild +++ b/libpwdgrp/Kbuild @@ -4,4 +4,6 @@ # # Licensed under the GPL v2, see the file LICENSE in this tarball. -lib-y:=pwd_grp.o uidgid_get.o +lib-y := uidgid_get.o + +lib-$(CONFIG_USE_BB_PWD_GRP) += pwd_grp.o