Deleted Added
sdiff udiff text old ( 126903 ) new ( 139112 )
full compact
1# @(#)Makefile 8.2 (Berkeley) 4/22/94
2# $FreeBSD: head/usr.sbin/nologin/Makefile 139112 2004-12-21 09:59:45Z ru $
3
4PROG= nologin
5MAN= nologin.5 nologin.8
6
7SYMLINKS= ${BINDIR}/nologin /sbin/nologin
8
9# It is important that nologin be statically linked for security
10# reasons. A dynamic non-setuid binary can be linked against a trojan
11# libc by setting LD_LIBRARY_PATH appropriately. Both sshd(8) and
12# login(1) make it possible to log in with an unsanitized environment,
13# rendering a dynamic nologin binary virtually useless.
14NO_SHARED= YES
15
16.include <bsd.prog.mk>