diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2012-08-14 20:14:36 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2012-08-14 20:14:36 +0000 |
commit | 1cdc3c87d0dfff4803f012b69f2234d62226eb7e (patch) | |
tree | d8b2550add2315482d8059ed036b8756e958c3ca /share/mk | |
parent | 6942ad1025c9d4e2b2c827965ca73ddc6f63e969 (diff) |
Garbage collect the USE_GCC variables; everything uses
COMPILER_VERSION now.
From Brad.
Diffstat (limited to 'share/mk')
-rw-r--r-- | share/mk/bsd.own.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index f08260682eb..d2a76d29eb0 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.117 2012/08/14 20:11:37 matthew Exp $ +# $OpenBSD: bsd.own.mk,v 1.118 2012/08/14 20:14:35 matthew Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -37,12 +37,10 @@ BINUTILS217_ARCH=avr32 hppa64 ia64 .for _arch in ${MACHINE_ARCH} .if !empty(GCC2_ARCH:M${_arch}) -USE_GCC3?=no COMPILER_VERSION?=gcc2 .elif !empty(GCC4_ARCH:M${_arch}) COMPILER_VERSION?=gcc4 .else -USE_GCC3?=yes COMPILER_VERSION?=gcc3 .endif |