f518456fdb
The executable itself doesn't contain any privileged information. An example of where this is useful is when makefs(8) is creating an image that includes /sbin/shutdown. This can now be done without root privileges. Reviewed by: delphij Discussed with: delphij, des CR: https://reviews.freebsd.org/D662
14 lines
224 B
Makefile
14 lines
224 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
PROG= shutdown
|
|
MAN= shutdown.8
|
|
LINKS= ${BINDIR}/shutdown ${BINDIR}/poweroff
|
|
MLINKS= shutdown.8 poweroff.8
|
|
|
|
BINOWN= root
|
|
BINGRP= operator
|
|
BINMODE=4554
|
|
|
|
.include <bsd.prog.mk>
|