e5a2b63146
For historical reasons the "remote magtape protocol module" rmt gets invoked as /etc/rmt, which is a symlink to /usr/sbin/rmt. Put it in the utilities package, as /usr/sbin/rmt is. Sponsored by: The FreeBSD Foundation
14 lines
253 B
Makefile
14 lines
253 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} -T "package=utilities" \
|
|
..${BINDIR}/rmt ${DESTDIR}/etc/rmt
|
|
|
|
.include <bsd.prog.mk>
|