summaryrefslogtreecommitdiff
path: root/Makefile.cross
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2005-01-12 00:06:29 +0000
committerMarc Espie <espie@cvs.openbsd.org>2005-01-12 00:06:29 +0000
commitb9e5cd47c9abab64cecec16dfc0fc4e6ecb8eed9 (patch)
treede448cc5e424c28f3e3cc4a8f8c00d3e5a9180d3 /Makefile.cross
parent6376fe44029f1dea4d6f8a311dcc86f66f816a2a (diff)
less confusing `TARGET_USE_GCC3' since it's only used locally.
Okay niklas@
Diffstat (limited to 'Makefile.cross')
-rw-r--r--Makefile.cross8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.cross b/Makefile.cross
index ed3979c60b4..216c70d658b 100644
--- a/Makefile.cross
+++ b/Makefile.cross
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.cross,v 1.2 2005/01/10 17:47:15 espie Exp $
+# $OpenBSD: Makefile.cross,v 1.3 2005/01/12 00:06:28 espie Exp $
cross-tools: cross-includes cross-binutils cross-gcc cross-lib
cross-distrib: cross-tools cross-bin cross-etc-root-var
@@ -187,13 +187,13 @@ ${CROSSBINUTILS}: ${CROSSINCLUDES}
${TARGET} == "hppa" || ${TARGET} == "hppa64" || \
${TARGET} == "i386" || \
${TARGET} == "sparc64" || ${TARGET} == "sgi"
-USE_GCC3=yes
+TARGET_USE_GCC3=Yes
.else
-USE_GCC3=no
+TARGET_USE_GCC3=No
.endif
${CROSSGCC}: ${CROSSBINUTILS}
-.if ${USE_GCC3:L} == "yes"
+.if ${TARGET_USE_GCC3:L} == "yes"
(cd ${.CURDIR}/gnu/usr.bin/gcc; \
MAKEOBJDIR=obj.${MACHINE}.${TARGET} \
TARGET_ARCH=${TARGET_ARCH} CROSSDIR=${CROSSDIR} \