Only check if ENABLE_SUID_NEWGRP is defined, for consistency with

other ENABLE_SUID_* variables.
This commit is contained in:
ru 2004-10-24 16:02:38 +00:00
parent e5247f7ec0
commit 9452dc8627

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