1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Only check if ENABLE_SUID_NEWGRP is defined, for consistency with

other ENABLE_SUID_* variables.
This commit is contained in:
Ruslan Ermilov 2004-10-24 16:02:38 +00:00
parent b1bffc1632
commit be88e5179d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=136913

View File

@ -4,7 +4,7 @@ PROG= newgrp
DPADD= ${LIBCRYPT} ${LIBUTIL}
LDADD= -lcrypt -lutil
.if defined(ENABLE_SUID_NEWGRP) && ${ENABLE_SUID_NEWGRP} == "true"
.if defined(ENABLE_SUID_NEWGRP)
BINMODE= 4555
INSTALLFLAGS= -fschg
.endif