From 294beb181ea57188a7f648b7d67e36169b36d119 Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Mon, 10 Jul 2017 15:59:54 -0500 Subject: [PATCH] Prevent double define in very old builds Partially reverts 2ddf4b33cbfbee616a263c04cec6f15685ba0972 --- tools/toolchains/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/toolchains/__init__.py b/tools/toolchains/__init__.py index 8741bc80b1..e28c4b55c0 100644 --- a/tools/toolchains/__init__.py +++ b/tools/toolchains/__init__.py @@ -292,7 +292,7 @@ class Resources: # standard labels for the "TARGET_" and "TOOLCHAIN_" specific directories, but # had the knowledge of a list of these directories to be ignored. LEGACY_IGNORE_DIRS = set([ - 'LPC11U24', 'LPC1768', 'LPC4088', 'LPC812', 'KL25Z', + 'LPC11U24', 'LPC1768', 'LPC2368', 'LPC4088', 'LPC812', 'KL25Z', 'ARM', 'uARM', 'IAR', 'GCC_ARM', 'GCC_CS', 'GCC_CR', 'GCC_CW', 'GCC_CW_EWL', 'GCC_CW_NEWLIB', ])