14c69f2136
logwtmp() gets called with the raw strings that are written to disk. For regular user entries, this isn't too bad, but when booting/shutting down, the contents get rather cryptic. Just call the standardized pututxline().
15 lines
283 B
Makefile
15 lines
283 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} ${LIBULOG} ${LIBCRYPT}
|
|
LDADD= -lutil -lulog -lcrypt
|
|
|
|
NO_SHARED?= YES
|
|
|
|
.include <bsd.prog.mk>
|