diff options
Diffstat (limited to 'nss/db-Makefile')
-rw-r--r-- | nss/db-Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nss/db-Makefile b/nss/db-Makefile index c10267c4df..b3f1ed4ad5 100644 --- a/nss/db-Makefile +++ b/nss/db-Makefile @@ -1,5 +1,5 @@ # Makefile to (re-)generate db versions of system database files. -# Copyright (C) 1996, 1997 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. # @@ -34,8 +34,7 @@ $(VAR_DB)/passwd.db: /etc/passwd @$(AWK) 'BEGIN { FS=":"; OFS=":"; cnt=0 } \ { printf "0%u ", cnt++; print } \ /^[^#]/ { printf ".%s ", $$1; print; \ - if (!uids[$$3]++) \ - { printf "=%s ", $$3; print } }' $^ | \ + printf "=%s ", $$3; print }' $^ | \ $(MAKEDB) -o $@ - @echo "done." |