summaryrefslogtreecommitdiff
path: root/usr.sbin/config/Makefile
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2003-07-22 17:15:14 +0000
committerBrad Smith <brad@cvs.openbsd.org>2003-07-22 17:15:14 +0000
commit25685fa91ebb7b712245211fb175b55b6db8427a (patch)
tree2829adc2f4330bdea78689854bd0a79a62579947 /usr.sbin/config/Makefile
parentbf8f55c721dcdbe06555f5a752d3989f680d9242 (diff)
- use :L variable modifier with ELF_TOOLCHAIN variable
- change 2 instances of the check from != "yes" to == "no" ok deraadt@
Diffstat (limited to 'usr.sbin/config/Makefile')
-rw-r--r--usr.sbin/config/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/config/Makefile b/usr.sbin/config/Makefile
index fa2bf9337e0..3f7a19fc370 100644
--- a/usr.sbin/config/Makefile
+++ b/usr.sbin/config/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.12 2003/06/28 04:55:07 deraadt Exp $
+# $OpenBSD: Makefile,v 1.13 2003/07/22 17:15:13 brad Exp $
.include <bsd.own.mk>
@@ -6,7 +6,7 @@ PROG= config
SRCS= files.c gram.y hash.c main.c mkheaders.c mkioconf.c mkmakefile.c \
mkswap.c pack.c scan.l sem.c util.c \
ukc.c misc.c ukcutil.c cmd.c exec.c
-.if (${ELF_TOOLCHAIN} == "yes")
+.if (${ELF_TOOLCHAIN:L} == "yes")
CFLAGS+=-DELF_SUPPORT
SRCS+= exec_elf.c
.else