mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 04:22:44 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
21 lines
374 B
Makefile
21 lines
374 B
Makefile
.include <src.opts.mk>
|
|
|
|
PACKAGE = runtime
|
|
PROG = passwd
|
|
BINOWN = root
|
|
BINMODE = 4555
|
|
PRECIOUSPROG=
|
|
LIBADD = pam
|
|
.if ${MK_NIS} != "no"
|
|
SYMLINKS = passwd ${BINDIR}/yppasswd
|
|
MLINKS = passwd.1 yppasswd.1
|
|
.endif
|
|
|
|
beforeinstall:
|
|
.for i in passwd yppasswd
|
|
[ ! -e ${DESTDIR}${BINDIR}/$i ] || \
|
|
chflags noschg ${DESTDIR}${BINDIR}/$i || true
|
|
.endfor
|
|
|
|
.include <bsd.prog.mk>
|