From fa00425379685d5ca992c45a04c68552a376c173 Mon Sep 17 00:00:00 2001 From: John Marino Date: Wed, 22 Oct 2014 11:06:39 +0200 Subject: [PATCH] Really set default binutils to version 2.24 The last update of binutils missed changing the default in bsd.cpu.mk, which means all the bootstrap and other tools were built with binutils 2.22 instead of 2.24. This oversight is rectified now. --- share/mk/bsd.cpu.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/mk/bsd.cpu.mk b/share/mk/bsd.cpu.mk index c374815791..43005c3efc 100644 --- a/share/mk/bsd.cpu.mk +++ b/share/mk/bsd.cpu.mk @@ -15,7 +15,7 @@ # we back off to something it probably does have. _DEFAULT_CCVER= gcc47 -_DEFAULT_BINUTILSVER= binutils222 +_DEFAULT_BINUTILSVER= binutils224 CCVER ?= ${_DEFAULT_CCVER} _CCVER := ${CCVER} @@ -39,9 +39,9 @@ CPUTYPE= ${FORCE_CPUTYPE} . if ${CCVER_BSD_CPU_MK} != "" . include "${CCVER_BSD_CPU_MK}" . endif -.elif ${CCVER} == "gcc47" +.elif ${CCVER} == gcc47 . include -.elif ${CCVER} == "gcc44" +.elif ${CCVER} == gcc44 . include .else . include -- 2.41.0