mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-23 16:01:42 +00:00
f2865d7d55
Previously when using NO_ROOT we recorded a METALOG entry for the
pam.d/ftp hard link with a different file mode than the link target
pam.d/ftpd, which is not permitted.
This change is similar to 1dbb9994d4
for .profile
Sponsored by: The FreeBSD Foundation
39 lines
505 B
Makefile
39 lines
505 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
|
|
NO_OBJ=
|
|
|
|
CONFGROUPS= CONFS
|
|
CONFS= README \
|
|
cron \
|
|
imap \
|
|
login \
|
|
other \
|
|
passwd pop3 \
|
|
sshd su system \
|
|
xdm
|
|
|
|
CONFDIR= /etc/pam.d
|
|
CONFSMODE_README= 444
|
|
|
|
.if ${MK_AT} != "no"
|
|
CONFGROUPS+= AT
|
|
AT+= atrun
|
|
ATPACKAGE+= at
|
|
.endif
|
|
|
|
.if ${MK_FTP} != "no"
|
|
CONFGROUPS+= FTP
|
|
FTP+= ftpd
|
|
FTPPACKAGE= ftp
|
|
|
|
LINKMODE= ${CONFMODE}
|
|
afterinstallconfig:
|
|
${INSTALL_LINK} ${TAG_ARGS} ${DESTDIR}${CONFDIR}/ftpd ${DESTDIR}${CONFDIR}/ftp
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|