diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-09-03 18:41:24 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-09-03 18:41:24 +0000 |
commit | 228758662f475a61b9ae4f95b4fa2b910d112a0f (patch) | |
tree | 89af97fc39223c1fd3e255e50736787e50dcf6c8 /gnu | |
parent | 570e744e53b725c62fcaf7d2f8551b4b887c1fd3 (diff) |
Boring... Add :L modifier to all tweakable variables tests.
Closes PR 1246
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cvs/Makefile.bsd-wrapper | 4 | ||||
-rw-r--r-- | gnu/usr.sbin/sendmail/Makefile.inc | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gnu/usr.bin/cvs/Makefile.bsd-wrapper b/gnu/usr.bin/cvs/Makefile.bsd-wrapper index 7edb60c14b4..f42f6d5fca7 100644 --- a/gnu/usr.bin/cvs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/cvs/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.34 2000/02/21 03:05:42 ho Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.35 2000/09/03 18:41:12 espie Exp $ .include <bsd.own.mk> @@ -11,7 +11,7 @@ CLEANFILES= lib/getdate.c macintosh/Makefile os2/Makefile zlib/Makefile \ doc/cvs.info-8 doc/cvs.info-9 doc/cvsclient.info doc/cvsclient.info-1 \ doc/cvsclient.info-2 doc/cvsclient.info-3 -.if (${KERBEROS} == "yes") +.if (${KERBEROS:L} == "yes") KRB=--with-krb4=/usr --enable-encryption .else KRB=--without-krb4 diff --git a/gnu/usr.sbin/sendmail/Makefile.inc b/gnu/usr.sbin/sendmail/Makefile.inc index 17306bf41b8..a839b1ed210 100644 --- a/gnu/usr.sbin/sendmail/Makefile.inc +++ b/gnu/usr.sbin/sendmail/Makefile.inc @@ -1,16 +1,16 @@ -# $OpenBSD: Makefile.inc,v 1.4 2000/06/18 00:04:20 itojun Exp $ +# $OpenBSD: Makefile.inc,v 1.5 2000/09/03 18:41:12 espie Exp $ .include <bsd.own.mk> .include <bsd.obj.mk> ENVDEF+= -DNEWDB -DMAP_REGEX ENVDEF+= -DNETINET6 -DNEEDSGETIPNODE -.if (${YP} == "yes") +.if (${YP:L} == "yes") ENVDEF+=-DNIS .endif .if defined(WANT_LIBWRAP) -.if (${TCP_WRAPPERS} == "yes") +.if (${TCP_WRAPPERS:L} == "yes") ENVDEF+=-DTCPWRAPPERS DPADD+= ${LIBWRAP} LDADD+= -lwrap |