53ed3b32ae
By using INSTALL_LINK instead of calling ln during install the files end up in the METALOG file as well if we use -DNO_ROOT and will be included in a disk image when using makefs with METALOG as the input. The other file that was not included in METALOG was /var/db/services.db which is now also included for -DNO_ROOT. Approved By: brooks (mentor) Differential Revision: https://reviews.freebsd.org/D15665
13 lines
223 B
Makefile
13 lines
223 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= rmt
|
|
MAN= rmt.8
|
|
|
|
# called from /usr/src/etc/Makefile
|
|
etc-rmt:
|
|
rm -f ${DESTDIR}/etc/rmt
|
|
${INSTALL_RSYMLINK} ..${BINDIR}/rmt ${DESTDIR}/etc/rmt
|
|
|
|
.include <bsd.prog.mk>
|