bb6c761206
According to a comment, we cannot safely remove utmpx entries here anymore. This is because the libc routines may block on file locking. In an ideal world login(1) should just remove the entries, which is why I'm disabling this code for now. If it turns out we get lots of stale entries here, we should figure out a way to deal with that.
15 lines
265 B
Makefile
15 lines
265 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
PROG= init
|
|
MAN= init.8
|
|
PRECIOUSPROG=
|
|
INSTALLFLAGS=-b -B.bak
|
|
CFLAGS+=-DDEBUGSHELL -DSECURE -DLOGIN_CAP -DCOMPAT_SYSV_INIT
|
|
DPADD= ${LIBUTIL} ${LIBCRYPT}
|
|
LDADD= -lutil -lcrypt
|
|
|
|
NO_SHARED?= YES
|
|
|
|
.include <bsd.prog.mk>
|