Add a -a argument to id(1), which causes id(1) to print out process audit properties, including the audit user id. This can be quite helpful in debugging audit problems. Obtained from: TrustedBSD Project Rename "-a" flag to "-A" in order to avoid conflicting with the "-a" flag as found on Solaris. Requested by: ceri Approved by: re (hrs)
17 lines
284 B
Makefile
17 lines
284 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= id
|
|
WARNS?= 6
|
|
LINKS= ${BINDIR}/id ${BINDIR}/groups
|
|
LINKS+= ${BINDIR}/id ${BINDIR}/whoami
|
|
MAN= id.1 groups.1 whoami.1
|
|
|
|
.if !defined(NO_AUDIT)
|
|
CFLAGS+= -DUSE_BSM_AUDIT
|
|
DPADD+= ${LIBBSM}
|
|
LDADD+= -lbsm
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|