diff options
author | bde <bde@FreeBSD.org> | 2004-02-29 06:39:11 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2004-02-29 06:39:11 +0000 |
commit | 6becbe0dc56258a4e9f2945f223bec6080741c35 (patch) | |
tree | 25703884175f55f50859e529d09d63bfaff4dda2 /usr.bin | |
parent | 22b3d270f167af3362bd3f54d17a35387d21611f (diff) | |
download | FreeBSD-src-6becbe0dc56258a4e9f2945f223bec6080741c35.zip FreeBSD-src-6becbe0dc56258a4e9f2945f223bec6080741c35.tar.gz |
Fixed style bugs in previous commit (.ifndef instead of .if defined(),
and tab lossage).
Garbage-collected NEED_LIBNAMES.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/login/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/login/Makefile b/usr.bin/login/Makefile index b09edff..e473aae 100644 --- a/usr.bin/login/Makefile +++ b/usr.bin/login/Makefile @@ -7,11 +7,10 @@ CFLAGS+=-DLOGALL DPADD= ${LIBUTIL} ${LIBPAM} LDADD= -lutil ${MINUSLPAM} MAN= login.1 login.access.5 -.ifndef NO_SETUID_LOGIN -BINOWN= root +.if !defined(NO_SETUID_LOGIN) +BINOWN= root BINMODE=4555 INSTALLFLAGS=-fschg .endif -NEED_LIBNAMES= yes .include <bsd.prog.mk> |