From 337698b78dc673c004b07527a39733f7bef53413 Mon Sep 17 00:00:00 2001 From: Bryan Drewery Date: Tue, 31 Oct 2017 02:52:36 +0000 Subject: [PATCH] native-xtools: Allow SYSTEM_COMPILER to be used after r325001. Now that a proper sysroot is used and a separate target list, it should be safe to skip building the initial cross-compiler. X-MFC-With: r325001 MFC after: 1 month Sponsored by: Dell EMC Isilon --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 516e8435955..e4edc50c67e 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -133,7 +133,7 @@ WANT_COMPILER_VERSION!= \ # TARGET_ARCH!=MACHINE_ARCH. .if ${MK_SYSTEM_COMPILER} == "yes" && \ (${MK_CLANG_BOOTSTRAP} == "yes" || ${MK_GCC_BOOTSTRAP} == "yes") && \ - !make(showconfig) && !make(native-xtools) && !make(xdev*) && \ + !make(showconfig) && !make(xdev*) && \ ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE} && \ (${COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \ ${COMPILER_VERSION} == ${WANT_COMPILER_VERSION} && \