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 /libexec/ftpd | |
parent | 570e744e53b725c62fcaf7d2f8551b4b887c1fd3 (diff) |
Boring... Add :L modifier to all tweakable variables tests.
Closes PR 1246
Diffstat (limited to 'libexec/ftpd')
-rw-r--r-- | libexec/ftpd/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/ftpd/Makefile b/libexec/ftpd/Makefile index 138909dd3d1..6c39d019047 100644 --- a/libexec/ftpd/Makefile +++ b/libexec/ftpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2000/07/19 19:28:02 mickey Exp $ +# $OpenBSD: Makefile,v 1.18 2000/09/03 18:41:14 espie Exp $ # $NetBSD: Makefile,v 1.13 1996/02/16 02:07:41 cgd Exp $ # @(#)Makefile 8.2 (Berkeley) 4/4/94 @@ -20,13 +20,13 @@ CFLAGS += -I${LSDIR} # not really used CPPFLAGS+=-DINET6 -.if (${SKEY} == "yes") +.if (${SKEY:L} == "yes") CFLAGS+=-DSKEY LDADD+= -lskey DPADD+= ${LIBSKEY} .endif -.if (${KERBEROS} == "yes") +.if (${KERBEROS:L} == "yes") SRCS+= klogin.c .PATH: ${.CURDIR}/../../usr.bin/login CFLAGS+= -DKERBEROS @@ -34,7 +34,7 @@ LDADD+= -lkafs -lkrb -ldes DPADD+= ${LIBKRB} ${LIBKRB} ${LIBKAFS} .endif -.if (${TCP_WRAPPERS} == "yes") +.if (${TCP_WRAPPERS:L} == "yes") CFLAGS+=-DTCPWRAPPERS LDADD+= -lwrap DPADD+= ${LIBWRAP} |