mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 23:05:49 +01:00
c6063d0da8
from the latter.
28 lines
518 B
Makefile
28 lines
518 B
Makefile
# From: @(#)Makefile 8.3 (Berkeley) 4/2/94
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG = passwd
|
|
BINOWN = root
|
|
BINMODE = 4555
|
|
DPADD = ${LIBPAM}
|
|
LDADD = ${MINUSLPAM}
|
|
.if ${MK_NIS} != "no"
|
|
LINKS = ${BINDIR}/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
|
|
|
|
.if !defined(NO_FSCHG)
|
|
afterinstall:
|
|
-chflags schg ${DESTDIR}${BINDIR}/passwd
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|