diff options
author | ru <ru@FreeBSD.org> | 2004-10-24 16:02:38 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-10-24 16:02:38 +0000 |
commit | 9452dc86276a24266b659bbdb559f6721af1c61d (patch) | |
tree | 6de6298d1734212b6c536d531f17a4282d2b902d /usr.bin | |
parent | e5247f7ec0d695f84322ee6ccadf69e3809ee4ef (diff) | |
download | FreeBSD-src-9452dc86276a24266b659bbdb559f6721af1c61d.zip FreeBSD-src-9452dc86276a24266b659bbdb559f6721af1c61d.tar.gz |
Only check if ENABLE_SUID_NEWGRP is defined, for consistency with
other ENABLE_SUID_* variables.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/newgrp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/newgrp/Makefile b/usr.bin/newgrp/Makefile index a80ad60..546fcf7 100644 --- a/usr.bin/newgrp/Makefile +++ b/usr.bin/newgrp/Makefile @@ -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 |