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 /usr.bin/sudo | |
parent | 570e744e53b725c62fcaf7d2f8551b4b887c1fd3 (diff) |
Boring... Add :L modifier to all tweakable variables tests.
Closes PR 1246
Diffstat (limited to 'usr.bin/sudo')
-rw-r--r-- | usr.bin/sudo/Makefile.bsd-wrapper | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/sudo/Makefile.bsd-wrapper b/usr.bin/sudo/Makefile.bsd-wrapper index 6b727f5379b..d5f5ab0950d 100644 --- a/usr.bin/sudo/Makefile.bsd-wrapper +++ b/usr.bin/sudo/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.8 2000/08/20 18:42:41 millert Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.9 2000/09/03 18:41:19 espie Exp $ MAN= sudo.8 sudoers.5 visudo.8 XCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" LDFLAGS="${LDFLAGS}" @@ -7,13 +7,13 @@ CONFIGURE_OPTS= --prefix=/usr --with-devel --with-insults --with-logincap \ .include <bsd.own.mk> -.if (${SKEY} == "yes") +.if (${SKEY:L} == "yes") CONFIGURE_OPTS+=--with-skey LDADD+= -lskey DPADD+= ${LIBSKEY} .endif -.if (${KERBEROS} == "yes") +.if (${KERBEROS:L} == "yes") CONFIGURE_OPTS+=--with-kerb4 LDADD+= -lkrb -ldes -lkafs DPADD+= ${LIBKRB} ${LIBDES} ${LIBKAFS} |