aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-05-07 17:51:34 +0000
committerEric Andersen <andersen@codepoet.org>2001-05-07 17:51:34 +0000
commitda7f095c1203bf58fdb16e8151856e6f850e5820 (patch)
tree298993a3602463f6025287312e73448538ef17b4
parent28355a36da6ad4d1b55ba9bb146fb0b6586e7edb (diff)
downloadbusybox-w32-da7f095c1203bf58fdb16e8151856e6f850e5820.tar.gz
busybox-w32-da7f095c1203bf58fdb16e8151856e6f850e5820.tar.bz2
busybox-w32-da7f095c1203bf58fdb16e8151856e6f850e5820.zip
Update comment re USE_SYSTEM_PWD_GRP
-Erik
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index d767e715a..06b42a8e9 100644
--- a/Makefile
+++ b/Makefile
@@ -45,11 +45,12 @@ DODEBUG = false
45# password and group functions. Assuming you use GNU libc, when this is 45# password and group functions. Assuming you use GNU libc, when this is
46# `true', you will need to install the /etc/nsswitch.conf configuration file 46# `true', you will need to install the /etc/nsswitch.conf configuration file
47# and the required libnss_* libraries. This generally makes your embedded 47# and the required libnss_* libraries. This generally makes your embedded
48# system quite a bit larger... If you leave this off, busybox will directly 48# system quite a bit larger... If you leave this off, busybox will directly use
49# use the /etc/password, /etc/group files (and your system will be smaller, and 49# the /etc/password, /etc/group files (and your system will be smaller, and I
50# I will get fewer emails asking about how glibc NSS works). Enabling this adds 50# will get fewer emails asking about how glibc NSS works). Enabling this adds
51# just 1.4k to the binary size (which is a _lot_ less then glibc NSS costs), 51# just 1.4k to the binary size (which is a _lot_ less then glibc NSS costs).
52# Most people will want to leave this set to false. 52# Note that if you want hostname resolution to work with glibc, you still need
53# the libnss_* libraries. Most people will want to leave this set to false.
53USE_SYSTEM_PWD_GRP = true 54USE_SYSTEM_PWD_GRP = true
54 55
55# This enables compiling with dmalloc ( http://dmalloc.com/ ) 56# This enables compiling with dmalloc ( http://dmalloc.com/ )