diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-19 21:26:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-19 21:26:35 +0000 |
commit | 60f0cc8b06f6b2a732dba45282047230a78eab47 (patch) | |
tree | 095b6ccdab3a498288710207dff5b8c76acad921 /usr.sbin/amd/config | |
parent | 11de9e6ceccf61da35fe169021912e46267d7f74 (diff) |
Changed ``defined(KERBEROS)'' to ``(${KERBEROS} == "yes")''
Same change doen for SKEY, YP, and KERBEROS5. This allows
people to override those setting in /etc/mk.conf.
Diffstat (limited to 'usr.sbin/amd/config')
-rw-r--r-- | usr.sbin/amd/config/Makefile.config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/amd/config/Makefile.config b/usr.sbin/amd/config/Makefile.config index e7b692c60cc..a2a3afb1b5c 100644 --- a/usr.sbin/amd/config/Makefile.config +++ b/usr.sbin/amd/config/Makefile.config @@ -1,5 +1,5 @@ # from: @(#)Makefile.config 8.1 (Berkeley) 6/6/93 -# $Id: Makefile.config,v 1.2 1996/09/04 22:52:08 deraadt Exp $ +# $Id: Makefile.config,v 1.3 1997/04/19 21:26:32 millert Exp $ # .include <bsd.own.mk> @@ -44,7 +44,7 @@ OS = bsd44 # Also define HAS_NIS_RELOAD to include map # enumeration code implementing "cache:=all" # -.if defined(YP) +.if (${YP} == "yes") HAS_NIS_MAPS = -DHAS_NIS_MAPS -DHAS_NIS_RELOAD .endif |