Merge pull request #4733 from theotherjimmy/fix-old-builds

Prevent double define in very old builds
pull/4792/head
Jimmy Brisson 2017-07-17 11:07:59 -05:00 committed by GitHub
commit 10a06a7083
1 changed files with 1 additions and 1 deletions

View File

@ -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',
])