From ce38cc158226ab53f412af0f540e6a2e9d53b70f Mon Sep 17 00:00:00 2001 From: John Marino Date: Wed, 3 Oct 2012 02:42:34 +0200 Subject: [PATCH] Makefile.inc1: Unbreak buildworld There was a bootstrap problem with gcc47. For systems without gcc47 (which is almost all of them), the buildworld failed on the first gcc47 libraries which require gcc47 to build. The gnu/lib/gcc47/csu target was duplicated and the makefile was attempting to build it before gcc47 was installed. --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index dab1f3f65b..d2fb231bc1 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -809,7 +809,7 @@ _gcc_common_cross= gnu/usr.bin/gmp gnu/usr.bin/mpfr _gcc44_cross= gnu/usr.bin/cc44 _gcc44_tools= gnu/usr.bin/cc44/cc_prep gnu/usr.bin/cc44/cc_tools .if !defined(NO_GCC47) -_gcc47_cross= lib/libz gnu/usr.bin/mpc gnu/lib/gcc47/csu gnu/usr.bin/cc47 +_gcc47_cross= lib/libz gnu/usr.bin/mpc gnu/usr.bin/cc47 _gcc47_tools= gnu/usr.bin/cc47/cc_prep gnu/usr.bin/cc47/cc_tools .endif _custom_cross= libexec/customcc -- 2.41.0