From a356b78462a0d852573c2a59f324f4b960cee891 Mon Sep 17 00:00:00 2001 From: Bryan Drewery Date: Thu, 7 Jul 2016 21:03:50 +0000 Subject: [PATCH] WITH_SYSTEM_COMPILER: Don't enable for xdev or native-xtools. Otherwise they get no compiler. Reported by: swills Tested by: swills Approved by: re (gjb) Sponsored by: EMC / Isilon Storage Division --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index ca84c60ec42..f73303213f2 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -82,7 +82,7 @@ MK_CROSS_COMPILER= no # Check if there is a local compiler that can satisfy as an external compiler. .if ${MK_SYSTEM_COMPILER} == "yes" && ${MK_CROSS_COMPILER} == "yes" && \ (${MK_CLANG_BOOTSTRAP} == "yes" || ${MK_GCC_BOOTSTRAP} == "yes") && \ - !make(showconfig) + !make(showconfig) && !make(native-xtools) && !make(xdev*) # Which compiler is expected to be used? .if ${MK_CLANG_BOOTSTRAP} == "yes" _expected_compiler_type= clang