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 /gnu | |
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 'gnu')
-rw-r--r-- | gnu/usr.bin/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index eec2e8fa73d..22c251e0125 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.33 2003/06/22 22:27:17 deraadt Exp $ +# $OpenBSD: Makefile,v 1.34 2003/07/22 17:15:12 brad Exp $ # $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $ .include <bsd.own.mk> @@ -10,7 +10,7 @@ SUBDIR+= groff gzip lynx rcs sdiff sendbug SUBDIR+= binutils # some ports use binutils gas and ld, most do not (yet). -.if ${ELF_TOOLCHAIN} != "yes" +.if ${ELF_TOOLCHAIN:L} == "no" SUBDIR+= gas ld .endif |