diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2003-07-22 17:15:14 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2003-07-22 17:15:14 +0000 |
commit | 25685fa91ebb7b712245211fb175b55b6db8427a (patch) | |
tree | 2829adc2f4330bdea78689854bd0a79a62579947 /usr.sbin/config/Makefile | |
parent | bf8f55c721dcdbe06555f5a752d3989f680d9242 (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/Makefile | 4 |
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 |