summaryrefslogtreecommitdiff
path: root/Makefile.cross
diff options
context:
space:
mode:
authorMatthew Dempsky <matthew@cvs.openbsd.org>2012-08-14 20:14:36 +0000
committerMatthew Dempsky <matthew@cvs.openbsd.org>2012-08-14 20:14:36 +0000
commit1cdc3c87d0dfff4803f012b69f2234d62226eb7e (patch)
treed8b2550add2315482d8059ed036b8756e958c3ca /Makefile.cross
parent6942ad1025c9d4e2b2c827965ca73ddc6f63e969 (diff)
Garbage collect the USE_GCC variables; everything uses
COMPILER_VERSION now. From Brad.
Diffstat (limited to 'Makefile.cross')
-rw-r--r--Makefile.cross6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile.cross b/Makefile.cross
index 6ee5a85977c..dfc03eed41a 100644
--- a/Makefile.cross
+++ b/Makefile.cross
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.cross,v 1.54 2012/08/02 13:38:38 okan Exp $
+# $OpenBSD: Makefile.cross,v 1.55 2012/08/14 20:14:35 matthew Exp $
cross-tools: cross-includes cross-binutils cross-gcc cross-lib
cross-distrib: cross-tools cross-bin cross-share cross-sys cross-etc-root-var
@@ -92,14 +92,10 @@ OLD_BINUTILS_ARCH=m68k m88k vax
.for _arch in ${TARGET_ARCH}
.if !empty(GCC2_ARCH:M${_arch})
-USE_GCC3?=no
-TARGET_USE_GCC3=No
COMPILER_VERSION?=gcc2
.elif !empty(GCC4_ARCH:M${_arch})
-TARGET_USE_GCC4=Yes
COMPILER_VERSION?=gcc4
.else
-TARGET_USE_GCC3=Yes
COMPILER_VERSION?=gcc3
.endif