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/usr.sbin/sendmail | |
parent | 570e744e53b725c62fcaf7d2f8551b4b887c1fd3 (diff) |
Boring... Add :L modifier to all tweakable variables tests.
Closes PR 1246
Diffstat (limited to 'gnu/usr.sbin/sendmail')
-rw-r--r-- | gnu/usr.sbin/sendmail/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
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 |