diff options
author | David Nugent <davidn@FreeBSD.org> | 1999-02-23 07:15:11 +0000 |
---|---|---|
committer | David Nugent <davidn@FreeBSD.org> | 1999-02-23 07:15:11 +0000 |
commit | 5f12594a294b0c44a5e208ffd394781c344d79bf (patch) | |
tree | b24d50f86b6a373ffc2319c539805c187ded9a42 /usr.sbin/pw/Makefile | |
parent | b48125eaa817bf0624993a99695e3d501d29d28a (diff) | |
download | src-5f12594a294b0c44a5e208ffd394781c344d79bf.tar.gz src-5f12594a294b0c44a5e208ffd394781c344d79bf.zip |
1) Do not blindly ignore file update errors which may occur due to concurrent
updating
2) Add -V <etcdir>, which allows maintaining user/group database in alternate
locations other than /etc.
Notes
Notes:
svn path=/head/; revision=44229
Diffstat (limited to 'usr.sbin/pw/Makefile')
-rw-r--r-- | usr.sbin/pw/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pw/Makefile b/usr.sbin/pw/Makefile index 3425e9c99304..7b630dd12cc4 100644 --- a/usr.sbin/pw/Makefile +++ b/usr.sbin/pw/Makefile @@ -1,7 +1,7 @@ -# $Id: Makefile,v 1.5 1997/02/22 16:12:17 peter Exp $ +# $Id: Makefile,v 1.6 1998/09/19 22:42:12 obrien Exp $ PROG= pw -SRCS= pw.c pw_conf.c pw_user.c pw_group.c pw_log.c pw_nis.c \ +SRCS= pw.c pw_conf.c pw_user.c pw_group.c pw_log.c pw_nis.c pw_vpw.c \ grupd.c pwupd.c fileupd.c edgroup.c psdate.c \ bitmap.c cpdir.c rm_r.c @@ -9,7 +9,7 @@ MAN5= pw.conf.5 MAN8= pw.8 #RND= -DUSE_MD5RAND -CFLAGS+= -Wall $(CDB) $(RND) +CFLAGS+= -W -Wall $(CDB) $(RND) LDADD= -lcrypt DPADD= ${LIBCRYPT} |