diff options
author | 2005-01-12 00:06:28 +0000 | |
---|---|---|
committer | 2005-01-12 00:06:28 +0000 | |
commit | ca88db65ee1dbff950e3985cb6abdd9d50e1b9d8 (patch) | |
tree | d233ebf2c0f1210c0cfe63b52f9ad54171c1908e | |
parent | Document the 98543 topcat. (diff) | |
download | wireguard-openbsd-ca88db65ee1dbff950e3985cb6abdd9d50e1b9d8.tar.xz wireguard-openbsd-ca88db65ee1dbff950e3985cb6abdd9d50e1b9d8.zip |
less confusing `TARGET_USE_GCC3' since it's only used locally.
Okay niklas@
-rw-r--r-- | Makefile.cross | 8 |
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} \ |